Class: Google::Apis::CloudsearchV1::AppsDynamiteStorageOpenLinkAppUriIntent
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::AppsDynamiteStorageOpenLinkAppUriIntent
- 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
Android intent.
Instance Attribute Summary collapse
-
#extra_data ⇒ Array<Google::Apis::CloudsearchV1::AppsDynamiteStorageOpenLinkAppUriIntentExtraData>
A list of extra data for the android intent.
-
#intent_action ⇒ String
An android intent action string for the
@link android.content.Intent
object.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AppsDynamiteStorageOpenLinkAppUriIntent
constructor
A new instance of AppsDynamiteStorageOpenLinkAppUriIntent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AppsDynamiteStorageOpenLinkAppUriIntent
Returns a new instance of AppsDynamiteStorageOpenLinkAppUriIntent.
3804 3805 3806 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3804 def initialize(**args) update!(**args) end |
Instance Attribute Details
#extra_data ⇒ Array<Google::Apis::CloudsearchV1::AppsDynamiteStorageOpenLinkAppUriIntentExtraData>
A list of extra data for the android intent. For example, for a calendar event
edit intent, the event title information can be passed as extra data.
Corresponds to the JSON property extraData
3795 3796 3797 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3795 def extra_data @extra_data end |
#intent_action ⇒ String
An android intent action string for the @link android.content.Intent
object.
For example: for the view intent action type, a valid value will be android.
content.Intent.ACTION_VIEW.
Corresponds to the JSON property intentAction
3802 3803 3804 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3802 def intent_action @intent_action end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3809 3810 3811 3812 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3809 def update!(**args) @extra_data = args[:extra_data] if args.key?(:extra_data) @intent_action = args[:intent_action] if args.key?(:intent_action) end |