Show / Hide Table of Contents

Class VoicePhoneNumberI18nData

Inheritance
System.Object
VoicePhoneNumberI18nData
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.CloudSearch.v1.Data
Assembly: Google.Apis.CloudSearch.v1.dll
Syntax
public class VoicePhoneNumberI18nData : IDirectResponseSchema

Properties

CountryCode

The country calling code for this number, as defined by the ITU. For example, this would be 1 for NANPA countries, and 33 for France (for more info see i18n.phonenumbers.PhoneNumber.country_code).

Declaration
[JsonProperty("countryCode")]
public virtual int? CountryCode { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

InternationalNumber

Display number formatted using the INTERNATIONAL format.

Declaration
[JsonProperty("internationalNumber")]
public virtual string InternationalNumber { get; set; }
Property Value
Type Description
System.String

IsValid

When present, indicates the number is valid according to the libphonenumber's isValidNumber API (see https://code.google.com/p/libphonenumber/).

Declaration
[JsonProperty("isValid")]
public virtual bool? IsValid { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

NationalNumber

Display number formatted using the NATIONAL format.

Declaration
[JsonProperty("nationalNumber")]
public virtual string NationalNumber { get; set; }
Property Value
Type Description
System.String

RegionCode

A region (country, territory, continent, etc), as defined by Unicode's "CLDR", itself based on ISO 3166 (UN country codes). For details, see https://www.corp.google.com/~engdocs/java/com/google/i18n/identifiers/RegionCode.html

Declaration
[JsonProperty("regionCode")]
public virtual string RegionCode { get; set; }
Property Value
Type Description
System.String

ValidationResult

When set to a non-default value, indicates the validation reason that is set when phone number is invalid (is_valid is false).

Declaration
[JsonProperty("validationResult")]
public virtual string ValidationResult { get; set; }
Property Value
Type Description
System.String

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top