Class: Google::Cloud::Dialogflow::V2::Intent::Message::ListSelect
- Inherits:
- 
      Object
      
        - Object
- Google::Cloud::Dialogflow::V2::Intent::Message::ListSelect
 
- Defined in:
- lib/google/cloud/dialogflow/v2/doc/google/cloud/dialogflow/v2/intent.rb
Overview
The card for presenting a list of options to select from.
Defined Under Namespace
Classes: Item
Instance Attribute Summary collapse
- 
  
    
      #items  ⇒ Array<Google::Cloud::Dialogflow::V2::Intent::Message::ListSelect::Item> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Required. 
- 
  
    
      #title  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Optional. 
Instance Attribute Details
#items ⇒ Array<Google::Cloud::Dialogflow::V2::Intent::Message::ListSelect::Item>
Returns Required. List items.
| 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 | # File 'lib/google/cloud/dialogflow/v2/doc/google/cloud/dialogflow/v2/intent.rb', line 385 class ListSelect # An item in the list. # @!attribute [rw] info # @return [Google::Cloud::Dialogflow::V2::Intent::Message::SelectItemInfo] # Required. Additional information about this option. # @!attribute [rw] title # @return [String] # Required. The title of the list item. # @!attribute [rw] description # @return [String] # Optional. The main text describing the item. # @!attribute [rw] image # @return [Google::Cloud::Dialogflow::V2::Intent::Message::Image] # Optional. The image to display. class Item; end end | 
#title ⇒ String
Returns Optional. The overall title of the list.
| 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 | # File 'lib/google/cloud/dialogflow/v2/doc/google/cloud/dialogflow/v2/intent.rb', line 385 class ListSelect # An item in the list. # @!attribute [rw] info # @return [Google::Cloud::Dialogflow::V2::Intent::Message::SelectItemInfo] # Required. Additional information about this option. # @!attribute [rw] title # @return [String] # Required. The title of the list item. # @!attribute [rw] description # @return [String] # Optional. The main text describing the item. # @!attribute [rw] image # @return [Google::Cloud::Dialogflow::V2::Intent::Message::Image] # Optional. The image to display. class Item; end end |