Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2IntentMessageBasicCard
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowV2IntentMessageBasicCard
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/representations.rb
Overview
The basic card message. Useful for displaying information.
Instance Attribute Summary collapse
-
#buttons ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowV2IntentMessageBasicCardButton>
Optional.
-
#formatted_text ⇒ String
Required, unless image is present.
-
#image ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowV2IntentMessageImage
The image response message.
-
#subtitle ⇒ String
Optional.
-
#title ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2IntentMessageBasicCard
constructor
A new instance of GoogleCloudDialogflowV2IntentMessageBasicCard.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2IntentMessageBasicCard
Returns a new instance of GoogleCloudDialogflowV2IntentMessageBasicCard.
10450 10451 10452 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10450 def initialize(**args) update!(**args) end |
Instance Attribute Details
#buttons ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowV2IntentMessageBasicCardButton>
Optional. The collection of card buttons.
Corresponds to the JSON property buttons
10428 10429 10430 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10428 def @buttons end |
#formatted_text ⇒ String
Required, unless image is present. The body text of the card.
Corresponds to the JSON property formattedText
10433 10434 10435 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10433 def formatted_text @formatted_text end |
#image ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowV2IntentMessageImage
The image response message.
Corresponds to the JSON property image
10438 10439 10440 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10438 def image @image end |
#subtitle ⇒ String
Optional. The subtitle of the card.
Corresponds to the JSON property subtitle
10443 10444 10445 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10443 def subtitle @subtitle end |
#title ⇒ String
Optional. The title of the card.
Corresponds to the JSON property title
10448 10449 10450 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10448 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10455 10456 10457 10458 10459 10460 10461 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10455 def update!(**args) @buttons = args[:buttons] if args.key?(:buttons) @formatted_text = args[:formatted_text] if args.key?(:formatted_text) @image = args[:image] if args.key?(:image) @subtitle = args[:subtitle] if args.key?(:subtitle) @title = args[:title] if args.key?(:title) end |