Table of Contents

Class TransferNumberResponse

Namespace
Vonage.SubAccounts.TransferNumber
Assembly
Vonage.dll

Represents the response from a number transfer operation between accounts.

public record TransferNumberResponse : IEquatable<TransferNumberResponse>
Inheritance
TransferNumberResponse
Implements
Inherited Members

Constructors

TransferNumberResponse(string, string, string, string)

Represents the response from a number transfer operation between accounts.

public TransferNumberResponse(string Number, string Country, string From, string To)

Parameters

Number string

The phone number that was transferred.

Country string

The two-character country code in ISO 3166-1 alpha-2 format (e.g., "GB", "US").

From string

The API key of the account the number was transferred from.

To string

The API key of the account the number was transferred to.

Properties

Country

The two-character country code in ISO 3166-1 alpha-2 format (e.g., "GB", "US").

public string Country { get; init; }

Property Value

string

From

The API key of the account the number was transferred from.

public string From { get; init; }

Property Value

string

Number

The phone number that was transferred.

public string Number { get; init; }

Property Value

string

To

The API key of the account the number was transferred to.

public string To { get; init; }

Property Value

string