Class NumberTransferResponse
Represents the response from a number transfer operation between accounts.
public class NumberTransferResponse
- Inheritance
-
NumberTransferResponse
- 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
MasterAccountId
The master account ID.
[JsonProperty("masterAccountId")]
public string MasterAccountId { get; set; }
Property Value
Number
An owned virtual number to transfer.
[JsonProperty("number")]
public string Number { get; set; }
Property Value
To
The subaccount to transfer the number to.
[JsonProperty("to")]
public string To { get; set; }