Skip to main content

SignalWire.Relay.Calling.CallMedia.AudioParams

This object represents the parameters specific to audio 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.audio,
Parameters = new CallMedia.AudioParams
{
URL = "http://example.somewhere.com/test.wav"
}
};

Properties​

PropertyTypeDescription
URLstringThe URL of the audio file to play.

Methods​

None

Events​

None