Class: Google::Apis::CloudsearchV1::AppsDynamiteStorageOpenLinkAppUriIntentExtraData
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::AppsDynamiteStorageOpenLinkAppUriIntentExtraData
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb
Overview
Extra data for an android intent. Valid keys are defined in the hosting app contract.
Instance Attribute Summary collapse
-
#key ⇒ String
A key for the intent extra data.
-
#value ⇒ String
Value for the given extra data key.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AppsDynamiteStorageOpenLinkAppUriIntentExtraData
constructor
A new instance of AppsDynamiteStorageOpenLinkAppUriIntentExtraData.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AppsDynamiteStorageOpenLinkAppUriIntentExtraData
Returns a new instance of AppsDynamiteStorageOpenLinkAppUriIntentExtraData.
3556 3557 3558 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3556 def initialize(**args) update!(**args) end |
Instance Attribute Details
#key ⇒ String
A key for the intent extra data.
Corresponds to the JSON property key
3549 3550 3551 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3549 def key @key end |
#value ⇒ String
Value for the given extra data key.
Corresponds to the JSON property value
3554 3555 3556 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3554 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3561 3562 3563 3564 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3561 def update!(**args) @key = args[:key] if args.key?(:key) @value = args[:value] if args.key?(:value) end |