Class: Google::Apis::CloudsearchV1::AppsDynamiteSharedOpenLinkAppUri
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::AppsDynamiteSharedOpenLinkAppUri
- 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
Represents the platform specific uri/intent to open for each client.
Instance Attribute Summary collapse
-
#android_intent ⇒ Google::Apis::CloudsearchV1::AppsDynamiteSharedOpenLinkAppUriIntent
Android intent.
-
#companion_uri ⇒ String
A companion uri string to be opened in the chat companion window.
-
#ios_uri ⇒ String
A uri string to be opened in the corresponding iOS hosting app.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AppsDynamiteSharedOpenLinkAppUri
constructor
A new instance of AppsDynamiteSharedOpenLinkAppUri.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AppsDynamiteSharedOpenLinkAppUri
Returns a new instance of AppsDynamiteSharedOpenLinkAppUri.
2885 2886 2887 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2885 def initialize(**args) update!(**args) end |
Instance Attribute Details
#android_intent ⇒ Google::Apis::CloudsearchV1::AppsDynamiteSharedOpenLinkAppUriIntent
Android intent.
Corresponds to the JSON property androidIntent
2873 2874 2875 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2873 def android_intent @android_intent end |
#companion_uri ⇒ String
A companion uri string to be opened in the chat companion window. on the web.
Corresponds to the JSON property companionUri
2878 2879 2880 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2878 def companion_uri @companion_uri end |
#ios_uri ⇒ String
A uri string to be opened in the corresponding iOS hosting app.
Corresponds to the JSON property iosUri
2883 2884 2885 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2883 def ios_uri @ios_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2890 2891 2892 2893 2894 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2890 def update!(**args) @android_intent = args[:android_intent] if args.key?(:android_intent) @companion_uri = args[:companion_uri] if args.key?(:companion_uri) @ios_uri = args[:ios_uri] if args.key?(:ios_uri) end |