Class: Google::Cloud::TextToSpeech::V1::MultiSpeakerMarkup

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/texttospeech/v1/cloud_tts.rb

Overview

A collection of turns for multi-speaker synthesis.

Defined Under Namespace

Classes: Turn

Instance Attribute Summary collapse

Instance Attribute Details

#turns::Array<::Google::Cloud::TextToSpeech::V1::MultiSpeakerMarkup::Turn>

Returns Required. Speaker turns.

Returns:



142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# File 'proto_docs/google/cloud/texttospeech/v1/cloud_tts.rb', line 142

class MultiSpeakerMarkup
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # A Multi-speaker turn.
  # @!attribute [rw] speaker
  #   @return [::String]
  #     Required. The speaker of the turn, for example, 'O' or 'Q'. Please refer
  #     to documentation for available speakers.
  # @!attribute [rw] text
  #   @return [::String]
  #     Required. The text to speak.
  class Turn
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end
end