*** id: 2e0cabc3-47ba-47f6-b58d-8110fb2083c0 title: CallMedia.TTSParams slug: /dotnet/reference/calling/call-media-tts-params max-toc-depth: 3 ---------------- # 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 ```csharp CallMedia media = new CallMedia { Type = CallMedia.MediaType.tts, Parameters = new CallMedia.TTSParams { Text = "I'm a little teapot" } }; ``` ## Properties | Property | Type | Description | | -------- | ------ | -------------------------------- | | `Text` | string | The text to process into speech. | ## Methods None ## Events None