Class Network
Represents pricing information for a specific mobile or landline network operator.
public class Network
- Inheritance
-
Network
- Inherited Members
Properties
Currency
The currency used for prices for this network.
[JsonProperty("currency")]
public string Currency { get; set; }
Property Value
Mcc
The Mobile Country Code of the operator.
[JsonProperty("mcc")]
public string Mcc { get; set; }
Property Value
Mnc
The Mobile Network Code of the operator.
[JsonProperty("mnc")]
public string Mnc { get; set; }
Property Value
NetworkCode
The Mobile Country Code and Mobile Network Code combined to give a unique reference for the operator.
[JsonProperty("networkCode")]
public string NetworkCode { get; set; }
Property Value
NetworkName
The company/organisational name of the operator.
[JsonProperty("networkName")]
public string NetworkName { get; set; }
Property Value
Price
The cost to send a message or make a call to this network
[JsonProperty("price")]
public string Price { get; set; }
Property Value
Type
The type of network: mobile or landline.
[JsonProperty("type")]
public string Type { get; set; }