Show / Hide Table of Contents

Class BuildingAddress

Public API: Resources.buildings

Inheritance
System.Object
BuildingAddress
Implements
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.Admin.Directory.directory_v1.Data
Assembly: Google.Apis.Admin.Directory.directory_v1.dll
Syntax
public class BuildingAddress : IDirectResponseSchema

Properties

AddressLines

Unstructured address lines describing the lower levels of an address.

Declaration
[JsonProperty("addressLines")]
public virtual IList<string> AddressLines { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

AdministrativeArea

Optional. Highest administrative subdivision which is used for postal addresses of a country or region.

Declaration
[JsonProperty("administrativeArea")]
public virtual string AdministrativeArea { 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

LanguageCode

Optional. BCP-47 language code of the contents of this address (if known).

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

Locality

Optional. Generally refers to the city/town portion of the address. Examples: US city, IT comune, UK post town. In regions of the world where localities are not well defined or do not fit into this structure well, leave locality empty and use addressLines.

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

PostalCode

Optional. Postal code of the address.

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

RegionCode

Required. CLDR region code of the country/region of the address.

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

Sublocality

Optional. Sublocality of the address.

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

Implements

IDirectResponseSchema
Back to top