Class Roaming
- Namespace
- Vonage.NumberInsights
- Assembly
- Vonage.dll
Represents roaming information for a mobile phone number, indicating whether the device is currently connected to a network outside its home country.
public class Roaming
- Inheritance
-
Roaming
- Inherited Members
Properties
RoamingCountryCode
If number is roaming, this is the code of the country number is roaming in.
[JsonProperty("roaming_country_code")]
public string RoamingCountryCode { get; set; }
Property Value
RoamingNetworkCode
If number is roaming, this is the id of the carrier network number is roaming in.
[JsonProperty("roaming_network_code")]
public string RoamingNetworkCode { get; set; }
Property Value
RoamingNetworkName
If number is roaming, this is the name of the carrier network number is roaming in.
[JsonProperty("roaming_network_name")]
public string RoamingNetworkName { get; set; }
Property Value
Status
Is number outside its home carrier network.
[JsonProperty("status")]
[JsonConverter(typeof(StringEnumConverter))]
public RoamingStatus Status { get; set; }