Class NumberTransferRequest
Represents a request to transfer a phone number between accounts.
public class NumberTransferRequest
- Inheritance
-
NumberTransferRequest
- Inherited Members
Properties
Country
The two character country code in ISO 3166-1 alpha-2 format
[JsonProperty("country")]
public string Country { get; set; }
Property Value
From
The account that currently holds the number.
[JsonProperty("from")]
public string From { get; set; }
Property Value
Number
An owned virtual number to be transferred.
[JsonProperty("number")]
public string Number { get; set; }
Property Value
To
The subaccount to transfer the number to.
[JsonProperty("to")]
public string To { get; set; }