Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1IntentMessageListSelectItem
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1IntentMessageListSelectItem
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dialogflow_v2beta1/classes.rb,
generated/google/apis/dialogflow_v2beta1/representations.rb,
generated/google/apis/dialogflow_v2beta1/representations.rb
Overview
An item in the list.
Instance Attribute Summary collapse
-
#description ⇒ String
Optional.
-
#image ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1IntentMessageImage
The image response message.
-
#info ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1IntentMessageSelectItemInfo
Additional info about the select item for when it is triggered in a dialog.
-
#title ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1IntentMessageListSelectItem
constructor
A new instance of GoogleCloudDialogflowV2beta1IntentMessageListSelectItem.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1IntentMessageListSelectItem
Returns a new instance of GoogleCloudDialogflowV2beta1IntentMessageListSelectItem
3743 3744 3745 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 3743 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
Optional. The main text describing the item.
Corresponds to the JSON property description
3725 3726 3727 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 3725 def description @description end |
#image ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1IntentMessageImage
The image response message.
Corresponds to the JSON property image
3730 3731 3732 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 3730 def image @image end |
#info ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1IntentMessageSelectItemInfo
Additional info about the select item for when it is triggered in a
dialog.
Corresponds to the JSON property info
3736 3737 3738 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 3736 def info @info end |
#title ⇒ String
Required. The title of the list item.
Corresponds to the JSON property title
3741 3742 3743 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 3741 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3748 3749 3750 3751 3752 3753 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 3748 def update!(**args) @description = args[:description] if args.key?(:description) @image = args[:image] if args.key?(:image) @info = args[:info] if args.key?(:info) @title = args[:title] if args.key?(:title) end |