class Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2IntentMessageListSelect
The card for presenting a list of options to select from.
Attributes
items[RW]
Required. List items. Corresponds to the JSON property `items` @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2IntentMessageListSelectItem>]
subtitle[RW]
Optional. Subtitle of the list. Corresponds to the JSON property `subtitle` @return [String]
title[RW]
Optional. The overall title of the list. Corresponds to the JSON property `title` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dialogflow_v3beta1/classes.rb, line 9636 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dialogflow_v3beta1/classes.rb, line 9641 def update!(**args) @items = args[:items] if args.key?(:items) @subtitle = args[:subtitle] if args.key?(:subtitle) @title = args[:title] if args.key?(:title) end