Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2IntentMessageListSelectItem
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2IntentMessageListSelectItem
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb
Instance Attribute Summary collapse
-
#description ⇒ String
Corresponds to the JSON property
description. -
#image ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2IntentMessageImage
Corresponds to the JSON property
image. -
#info ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2IntentMessageSelectItemInfo
Corresponds to the JSON property
info. -
#title ⇒ String
Corresponds to the JSON property
title.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2IntentMessageListSelectItem
constructor
A new instance of GoogleCloudDialogflowV2IntentMessageListSelectItem.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2IntentMessageListSelectItem
Returns a new instance of GoogleCloudDialogflowV2IntentMessageListSelectItem.
16569 16570 16571 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 16569 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
Corresponds to the JSON property description
16552 16553 16554 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 16552 def description @description end |
#image ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2IntentMessageImage
Corresponds to the JSON property image
16557 16558 16559 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 16557 def image @image end |
#info ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2IntentMessageSelectItemInfo
Corresponds to the JSON property info
16562 16563 16564 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 16562 def info @info end |
#title ⇒ String
Corresponds to the JSON property title
16567 16568 16569 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 16567 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
16574 16575 16576 16577 16578 16579 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 16574 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 |