Struct google_admin1_directory::Building[][src]

pub struct Building {
    pub kind: Option<String>,
    pub etags: Option<String>,
    pub description: Option<String>,
    pub floor_names: Option<Vec<String>>,
    pub building_id: Option<String>,
    pub coordinates: Option<BuildingCoordinates>,
    pub building_name: Option<String>,
}

JSON template for Building object in Directory API.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

Kind of resource this is.

ETag of the resource.

A brief description of the building. For example, "Chelsea Market".

The display names for all floors in this building. The floors are expected to be sorted in ascending order, from lowest floor to highest floor. For example, ["B2", "B1", "L", "1", "2", "2M", "3", "PH"] Must contain at least one entry.

Unique identifier for the building. The maximum length is 100 characters.

The geographic coordinates of the center of the building, expressed as latitude and longitude in decimal degrees.

The building name as seen by users in Calendar. Must be unique for the customer. For example, "NYC-CHEL". The maximum length is 100 characters.

Trait Implementations

impl Default for Building
[src]

Returns the "default value" for a type. Read more

impl Clone for Building
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Building
[src]

Formats the value using the given formatter. Read more

impl RequestValue for Building
[src]

impl ResponseResult for Building
[src]

Auto Trait Implementations

impl Send for Building

impl Sync for Building