Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResponseMessageMixedAudioSegment

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

Overview

Represents one segment of audio.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3ResponseMessageMixedAudioSegment

Returns a new instance of GoogleCloudDialogflowCxV3ResponseMessageMixedAudioSegment.



5757
5758
5759
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5757

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 segment can be interrupted by the end user's speech and the client should then start the next Dialogflow request. Corresponds to the JSON property allowPlaybackInterruption

Returns:

  • (Boolean)


5741
5742
5743
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5741

def allow_playback_interruption
  @allow_playback_interruption
end

#audioString

Raw audio synthesized from the Dialogflow agent's response using the output config specified in the request. Corresponds to the JSON property audio NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


5749
5750
5751
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5749

def audio
  @audio
end

#uriString

Client-specific URI that points to an audio clip accessible to the client. Dialogflow does not impose any validation on it. Corresponds to the JSON property uri

Returns:

  • (String)


5755
5756
5757
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5755

def uri
  @uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5762
5763
5764
5765
5766
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5762

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