Google Cloud Text-to-Speech v1 API - Class SynthesisInput (3.5.0)

public sealed class SynthesisInput : IMessage<SynthesisInput>, IEquatable<SynthesisInput>, IDeepCloneable<SynthesisInput>, IBufferMessage, IMessage

Reference documentation and code samples for the Google Cloud Text-to-Speech v1 API class SynthesisInput.

Contains text input to be synthesized. Either text or ssml must be supplied. Supplying both or neither returns [google.rpc.Code.INVALID_ARGUMENT][google.rpc.Code.INVALID_ARGUMENT]. The input size is limited to 5000 bytes.

Inheritance

object > SynthesisInput

Namespace

Google.Cloud.TextToSpeech.V1

Assembly

Google.Cloud.TextToSpeech.V1.dll

Constructors

SynthesisInput()

public SynthesisInput()

SynthesisInput(SynthesisInput)

public SynthesisInput(SynthesisInput other)
Parameter
NameDescription
otherSynthesisInput

Properties

HasSsml

public bool HasSsml { get; }

Gets whether the "ssml" field is set

Property Value
TypeDescription
bool

HasText

public bool HasText { get; }

Gets whether the "text" field is set

Property Value
TypeDescription
bool

InputSourceCase

public SynthesisInput.InputSourceOneofCase InputSourceCase { get; }
Property Value
TypeDescription
SynthesisInputInputSourceOneofCase

Ssml

public string Ssml { get; set; }

The SSML document to be synthesized. The SSML document must be valid and well-formed. Otherwise the RPC will fail and return [google.rpc.Code.INVALID_ARGUMENT][google.rpc.Code.INVALID_ARGUMENT]. For more information, see SSML.

Property Value
TypeDescription
string

Text

public string Text { get; set; }

The raw text to be synthesized.

Property Value
TypeDescription
string