Skip to main content

SignalWire.Relay.Calling.CallMedia.TTSParams

This object represents the parameters specific to tts media.

Constructor​

The only constructor is the default constructor, properties should all be assigned by initializer or after construction.

Parameters

None

Examples

Basic Example

CallMedia media = new CallMedia
{
Type = CallMedia.MediaType.tts,
Parameters = new CallMedia.TTSParams
{
Text = "I'm a little teapot"
}
};

Properties​

PropertyTypeDescription
TextstringThe text to process into speech.

Methods​

None

Events​

None