Table of Contents

Class Destination

Namespace
Vonage.Voice
Assembly
Vonage.dll

Represents the transfer destination for modifying an in-progress call. The destination can be either an inline NCCO or an answer URL that returns an NCCO.

public class Destination
Inheritance
Destination
Inherited Members

Properties

Ncco

An inline NCCO to transfer the call to. Used for transfer via inline NCCO.

[JsonProperty("ncco")]
public Ncco Ncco { get; set; }

Property Value

Ncco

Type

The destination type. Always "ncco".

[JsonProperty("type")]
public string Type { get; set; }

Property Value

string

Url

The URL that Vonage makes a request to, which must return an NCCO. Used for transfer via answer URL.

[JsonProperty("url")]
public string[] Url { get; set; }

Property Value

string[]