Table of Contents

Class Country

Namespace
Vonage.Pricing
Assembly
Vonage.dll

Represents pricing information for a country, including default prices and per-network pricing.

public class Country
Inheritance
Country
Inherited Members

Properties

CountryCode

Two letter country code.

[JsonProperty("countryCode")]
public string CountryCode { get; set; }

Property Value

string

CountryDisplayName

Readable country name.

[JsonProperty("countryDisplayName")]
public string CountryDisplayName { get; set; }

Property Value

string

CountryName

Readable country name.

[JsonProperty("countryName")]
public string CountryName { get; set; }

Property Value

string

Currency

The currency that your account is being billed in (by default Euros—EUR). Can change in the Dashboard to US Dollars—USD.

[JsonProperty("currency")]
public string Currency { get; set; }

Property Value

string

DefaultPrice

The default price.

[JsonProperty("defaultPrice")]
public string DefaultPrice { get; set; }

Property Value

string

DialingPrefix

The dialling prefix.

[JsonProperty("dialingPrefix")]
public string DialingPrefix { get; set; }

Property Value

string

Networks

An array of network objects

[JsonProperty("networks")]
public Network[] Networks { get; set; }

Property Value

Network[]