Show / Hide Table of Contents

Class VoicePhoneNumber

Represents both long and short phone number that can be called or texted. Short telephone numbers are used to reach local services. Short numbers and their purpose differ from country to country. These numbers in US are in the form of N11 which is a three-digit abbreviated dialing telephone number.

Inheritance
System.Object
VoicePhoneNumber
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 VoicePhoneNumber : IDirectResponseSchema

Properties

E164

E.164 formatted full phone number with leading +. This field also represents encoded form of short telephone numbers in E.164 format. e.g. "911" is encoded as "+1911".

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

ETag

The ETag of the item.

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

I18nData

Additional data that could be added using the libphonenumber API.

Declaration
[JsonProperty("i18nData")]
public virtual VoicePhoneNumberI18nData I18nData { get; set; }
Property Value
Type Description
VoicePhoneNumberI18nData

Implements

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