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.
Implements
IMessageSynthesisInput, IEquatableSynthesisInput, IDeepCloneableSynthesisInput, IBufferMessage, IMessageNamespace
Google.Cloud.TextToSpeech.V1Assembly
Google.Cloud.TextToSpeech.V1.dll
Constructors
SynthesisInput()
public SynthesisInput()
SynthesisInput(SynthesisInput)
public SynthesisInput(SynthesisInput other)
Parameter | |
---|---|
Name | Description |
other | SynthesisInput |
Properties
HasSsml
public bool HasSsml { get; }
Gets whether the "ssml" field is set
Property Value | |
---|---|
Type | Description |
bool |
HasText
public bool HasText { get; }
Gets whether the "text" field is set
Property Value | |
---|---|
Type | Description |
bool |
InputSourceCase
public SynthesisInput.InputSourceOneofCase InputSourceCase { get; }
Property Value | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
string |
Text
public string Text { get; set; }
The raw text to be synthesized.
Property Value | |
---|---|
Type | Description |
string |