Class CallEditCommand
Represents a command to modify an in-progress call (hangup, mute, unmute, earmuff, unearmuff, or transfer).
public class CallEditCommand
- Inheritance
-
CallEditCommand
- Inherited Members
Properties
Action
The action to perform on the call (hangup, mute, unmute, earmuff, unearmuff, or transfer).
[JsonProperty("action")]
[JsonConverter(typeof(StringEnumConverter))]
public CallEditCommand.ActionType Action { get; set; }
Property Value
Destination
The transfer destination containing either an inline NCCO or an answer URL. Required when Action is set to transfer.
[JsonProperty("destination")]
public Destination Destination { get; set; }