Show / Hide Table of Contents

Class UserLocation

JSON template for a location entry.

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

Properties

Area

Textual location. This is most useful for display purposes to concisely describe the location. For example 'Mountain View, CA', 'Near Seattle', 'US-NYC-9TH 9A209A.''

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

BuildingId

Building Identifier.

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

CustomType

Custom Type.

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

DeskCode

Most specific textual code of individual desk location.

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

FloorName

Floor name/number.

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

FloorSection

Floor section. More specific location within the floor. For example if a floor is divided into sections 'A', 'B' and 'C' this field would identify one of those values.

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

Type

Each entry can have a type which indicates standard types of that entry. For example location could be of types default and desk. In addition to standard type an entry can have a custom type and can give it any name. Such types should have 'custom' as type and also have a customType value.

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

Implements

IDirectResponseSchema
Back to top