Class: Google::Apis::TestingV1::IntentFilter
- Inherits:
-
Object
- Object
- Google::Apis::TestingV1::IntentFilter
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/testing_v1/classes.rb,
generated/google/apis/testing_v1/representations.rb,
generated/google/apis/testing_v1/representations.rb
Overview
The
Instance Attribute Summary collapse
-
#action_names ⇒ Array<String>
The android:name value of the
tag Corresponds to the JSON property actionNames
. -
#category_names ⇒ Array<String>
The android:name value of the
tag Corresponds to the JSON property categoryNames
. -
#mime_type ⇒ String
The android:mimeType value of the tag Corresponds to the JSON property
mimeType
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ IntentFilter
constructor
A new instance of IntentFilter.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ IntentFilter
Returns a new instance of IntentFilter
1051 1052 1053 |
# File 'generated/google/apis/testing_v1/classes.rb', line 1051 def initialize(**args) update!(**args) end |
Instance Attribute Details
#action_names ⇒ Array<String>
The android:name value of the actionNames
1039 1040 1041 |
# File 'generated/google/apis/testing_v1/classes.rb', line 1039 def action_names @action_names end |
#category_names ⇒ Array<String>
The android:name value of the categoryNames
1044 1045 1046 |
# File 'generated/google/apis/testing_v1/classes.rb', line 1044 def category_names @category_names end |
#mime_type ⇒ String
The android:mimeType value of the tag
Corresponds to the JSON property mimeType
1049 1050 1051 |
# File 'generated/google/apis/testing_v1/classes.rb', line 1049 def mime_type @mime_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1056 1057 1058 1059 1060 |
# File 'generated/google/apis/testing_v1/classes.rb', line 1056 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 |