Table of Contents

Class CallEditCommand

Namespace
Vonage.Voice
Assembly
Vonage.dll

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

CallEditCommand.ActionType

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; }

Property Value

Destination