Class BasicInsightResponse
- Namespace
- Vonage.NumberInsights
- Assembly
- Vonage.dll
Represents the response from a basic Number Insight lookup containing country and number format information.
public class BasicInsightResponse : NumberInsightResponseBase
- Inheritance
-
BasicInsightResponse
- Derived
- Inherited Members
Properties
CountryCode
Two character country code for number. This is in ISO 3166-1 alpha-2 format.
[JsonProperty("country_code")]
public string CountryCode { get; set; }
Property Value
CountryCodeIso3
Three character country code for number. This is in ISO 3166-1 alpha-3 format.
[JsonProperty("country_code_iso3")]
public string CountryCodeIso3 { get; set; }
Property Value
CountryName
The full name of the country that number is registered in.
[JsonProperty("country_name")]
public string CountryName { get; set; }
Property Value
CountryPrefix
The numeric prefix for the country that number is registered in.
[JsonProperty("country_prefix")]
public string CountryPrefix { get; set; }
Property Value
InternationalFormatNumber
The number in your request in international format.
[JsonProperty("international_format_number")]
public string InternationalFormatNumber { get; set; }
Property Value
NationalFormatNumber
The number in your request in the format used by the country the number belongs to.
[JsonProperty("national_format_number")]
public string NationalFormatNumber { get; set; }
Property Value
StatusMessage
The status description of your request.
[JsonProperty("status_message")]
public string StatusMessage { get; set; }