Skip to main content

SignalWire.Relay.Calling.CallRingback.TtsParams

This object represents the parameters specific to tts ringback.

Constructor

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

Parameters

None

Examples

Basic Example

CallRingback ringback = new CallRingback
{
Type = CallRingback.RingbackType.tts,
Parameters = new CallRingback.TTSParams
{
Gender = "female",
Language = "en",
Text = "I'm a little teapot"
}
};

Properties

PropertyTypeDescription
GenderstringThe gender of the tts engine.
LanguagestringThe language/dialect of the tts engine.
TextstringThe verbiage to synthesize with tts engine.

Methods

None

Events

None