Class Country
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
CountryDisplayName
Readable country name.
[JsonProperty("countryDisplayName")]
public string CountryDisplayName { get; set; }
Property Value
CountryName
Readable country name.
[JsonProperty("countryName")]
public string CountryName { get; set; }
Property Value
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
DefaultPrice
The default price.
[JsonProperty("defaultPrice")]
public string DefaultPrice { get; set; }
Property Value
DialingPrefix
The dialling prefix.
[JsonProperty("dialingPrefix")]
public string DialingPrefix { get; set; }
Property Value
Networks
An array of network objects
[JsonProperty("networks")]
public Network[] Networks { get; set; }
Property Value
- Network[]