Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1IntentMessageSimpleResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1IntentMessageSimpleResponse
 
 
- 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
The simple response message containing speech or text.
Instance Attribute Summary collapse
- 
  
    
      #display_text  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional.
 - 
  
    
      #ssml  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
One of text_to_speech or ssml must be provided.
 - 
  
    
      #text_to_speech  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
One of text_to_speech or ssml must be provided.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudDialogflowV2beta1IntentMessageSimpleResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudDialogflowV2beta1IntentMessageSimpleResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1IntentMessageSimpleResponse
Returns a new instance of GoogleCloudDialogflowV2beta1IntentMessageSimpleResponse
      3127 3128 3129  | 
    
      # File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 3127 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#display_text ⇒ String
Optional. The text to display.
Corresponds to the JSON property displayText
      3112 3113 3114  | 
    
      # File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 3112 def display_text @display_text end  | 
  
#ssml ⇒ String
One of text_to_speech or ssml must be provided. Structured spoken
response to the user in the SSML format. Mutually exclusive with
text_to_speech.
Corresponds to the JSON property ssml
      3119 3120 3121  | 
    
      # File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 3119 def ssml @ssml end  | 
  
#text_to_speech ⇒ String
One of text_to_speech or ssml must be provided. The plain text of the
speech output. Mutually exclusive with ssml.
Corresponds to the JSON property textToSpeech
      3125 3126 3127  | 
    
      # File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 3125 def text_to_speech @text_to_speech end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3132 3133 3134 3135 3136  | 
    
      # File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 3132 def update!(**args) @display_text = args[:display_text] if args.key?(:display_text) @ssml = args[:ssml] if args.key?(:ssml) @text_to_speech = args[:text_to_speech] if args.key?(:text_to_speech) end  |