Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2IntentMessageMediaContentResponseMediaObject
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowV2IntentMessageMediaContentResponseMediaObject
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dialogflow_v3/classes.rb,
generated/google/apis/dialogflow_v3/representations.rb,
generated/google/apis/dialogflow_v3/representations.rb
Overview
Response media object for media content card.
Instance Attribute Summary collapse
-
#content_url ⇒ String
Required.
-
#description ⇒ String
Optional.
-
#icon ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowV2IntentMessageImage
The image response message.
-
#large_image ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowV2IntentMessageImage
The image response message.
-
#name ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2IntentMessageMediaContentResponseMediaObject
constructor
A new instance of GoogleCloudDialogflowV2IntentMessageMediaContentResponseMediaObject.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2IntentMessageMediaContentResponseMediaObject
Returns a new instance of GoogleCloudDialogflowV2IntentMessageMediaContentResponseMediaObject.
7995 7996 7997 |
# File 'generated/google/apis/dialogflow_v3/classes.rb', line 7995 def initialize(**args) update!(**args) end |
Instance Attribute Details
#content_url ⇒ String
Required. Url where the media is stored.
Corresponds to the JSON property contentUrl
7973 7974 7975 |
# File 'generated/google/apis/dialogflow_v3/classes.rb', line 7973 def content_url @content_url end |
#description ⇒ String
Optional. Description of media card.
Corresponds to the JSON property description
7978 7979 7980 |
# File 'generated/google/apis/dialogflow_v3/classes.rb', line 7978 def description @description end |
#icon ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowV2IntentMessageImage
The image response message.
Corresponds to the JSON property icon
7983 7984 7985 |
# File 'generated/google/apis/dialogflow_v3/classes.rb', line 7983 def icon @icon end |
#large_image ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowV2IntentMessageImage
The image response message.
Corresponds to the JSON property largeImage
7988 7989 7990 |
# File 'generated/google/apis/dialogflow_v3/classes.rb', line 7988 def large_image @large_image end |
#name ⇒ String
Required. Name of media card.
Corresponds to the JSON property name
7993 7994 7995 |
# File 'generated/google/apis/dialogflow_v3/classes.rb', line 7993 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8000 8001 8002 8003 8004 8005 8006 |
# File 'generated/google/apis/dialogflow_v3/classes.rb', line 8000 def update!(**args) @content_url = args[:content_url] if args.key?(:content_url) @description = args[:description] if args.key?(:description) @icon = args[:icon] if args.key?(:icon) @large_image = args[:large_image] if args.key?(:large_image) @name = args[:name] if args.key?(:name) end |