Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1IntentMessageSimpleResponse
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1IntentMessageSimpleResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2beta1/classes.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb
Instance Attribute Summary collapse
-
#display_text ⇒ String
Corresponds to the JSON property
displayText. -
#ssml ⇒ String
Corresponds to the JSON property
ssml. -
#text_to_speech ⇒ String
Corresponds to the JSON property
textToSpeech.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1IntentMessageSimpleResponse
constructor
A new instance of GoogleCloudDialogflowV2beta1IntentMessageSimpleResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1IntentMessageSimpleResponse
Returns a new instance of GoogleCloudDialogflowV2beta1IntentMessageSimpleResponse.
16495 16496 16497 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 16495 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_text ⇒ String
Corresponds to the JSON property displayText
16483 16484 16485 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 16483 def display_text @display_text end |
#ssml ⇒ String
Corresponds to the JSON property ssml
16488 16489 16490 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 16488 def ssml @ssml end |
#text_to_speech ⇒ String
Corresponds to the JSON property textToSpeech
16493 16494 16495 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 16493 def text_to_speech @text_to_speech end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
16500 16501 16502 16503 16504 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 16500 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 |