Show / Hide Table of Contents

Class PhoneAccess

Phone access contains information required to dial into a conference using a regional phone number and a PIN that is specific to that phone number.

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

Properties

ETag

The ETag of the item.

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

FormattedPhoneNumber

The phone number to dial for this meeting space in INTERNATIONAL format. Full phone number with a leading '+' character and whitespace separations.

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

LanguageCode

The BCP 47/LDML language code for the language associated with this phone access. To be parsed by the i18n LanguageCode utility. Examples: "es-419" for Latin American Spanish, "fr-CA" for Canadian French.

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

PhoneNumber

The phone number to dial for this meeting space in E.164 format. Full phone number with a leading '+' character.

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

Pin

The PIN that users must enter after dialing the given number. The PIN consists of only decimal digits and the length may vary.

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

RegionCode

The CLDR/ISO 3166 region code for the country associated with this phone access. To be parsed by the i18n RegionCode utility. Example: "SE" for Sweden.

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

Implements

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