class Google::Apis::TestingV1::IntentFilter
The section of an tag. developer.android.com/guide/topics/manifest/ intent-filter-element.html
Attributes
action_names[RW]
The android:name value of the tag. Corresponds to the JSON property `actionNames` @return [Array<String>]
category_names[RW]
The android:name value of the tag. Corresponds to the JSON property `categoryNames` @return [Array<String>]
mime_type[RW]
The android:mimeType value of the tag. Corresponds to the JSON property `mimeType` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/testing_v1/classes.rb, line 1141 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/testing_v1/classes.rb, line 1146 def update!(**args) @action_names = args[:action_names] if args.key?(:action_names) @category_names = args[:category_names] if args.key?(:category_names) @mime_type = args[:mime_type] if args.key?(:mime_type) end