Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3ResponseMessageOutputAudioText

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb

Overview

A text or ssml response that is preferentially used for TTS output audio synthesis, as described in the comment on the ResponseMessage message.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3ResponseMessageOutputAudioText

Returns a new instance of GoogleCloudDialogflowCxV3ResponseMessageOutputAudioText.



2313
2314
2315
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 2313

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#allow_playback_interruptionBoolean Also known as: allow_playback_interruption?

Output only. Whether the playback of this message can be interrupted by the end user's speech and the client can then starts the next Dialogflow request. Corresponds to the JSON property allowPlaybackInterruption

Returns:

  • (Boolean)


2299
2300
2301
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 2299

def allow_playback_interruption
  @allow_playback_interruption
end

#ssmlString

The SSML text to be synthesized. For more information, see SSML. Corresponds to the JSON property ssml

Returns:

  • (String)


2306
2307
2308
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 2306

def ssml
  @ssml
end

#textString

The raw text to be synthesized. Corresponds to the JSON property text

Returns:

  • (String)


2311
2312
2313
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 2311

def text
  @text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2318
2319
2320
2321
2322
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 2318

def update!(**args)
  @allow_playback_interruption = args[:allow_playback_interruption] if args.key?(:allow_playback_interruption)
  @ssml = args[:ssml] if args.key?(:ssml)
  @text = args[:text] if args.key?(:text)
end