Class: Google::Apis::AdminDirectoryV1::Building
- Inherits:
-
Object
- Object
- Google::Apis::AdminDirectoryV1::Building
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/admin_directory_v1/classes.rb,
lib/google/apis/admin_directory_v1/representations.rb,
lib/google/apis/admin_directory_v1/representations.rb
Overview
Public API: Resources.buildings
Instance Attribute Summary collapse
-
#address ⇒ Google::Apis::AdminDirectoryV1::BuildingAddress
Public API: Resources.buildings Corresponds to the JSON property
address
. -
#building_id ⇒ String
Unique identifier for the building.
-
#building_name ⇒ String
The building name as seen by users in Calendar.
-
#coordinates ⇒ Google::Apis::AdminDirectoryV1::BuildingCoordinates
Public API: Resources.buildings Corresponds to the JSON property
coordinates
. -
#description ⇒ String
A brief description of the building.
-
#etags ⇒ String
ETag of the resource.
-
#floor_names ⇒ Array<String>
The display names for all floors in this building.
-
#kind ⇒ String
Kind of resource this is.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Building
constructor
A new instance of Building.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Building
Returns a new instance of Building.
537 538 539 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 537 def initialize(**args) update!(**args) end |
Instance Attribute Details
#address ⇒ Google::Apis::AdminDirectoryV1::BuildingAddress
Public API: Resources.buildings
Corresponds to the JSON property address
497 498 499 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 497 def address @address end |
#building_id ⇒ String
Unique identifier for the building. The maximum length is 100 characters.
Corresponds to the JSON property buildingId
502 503 504 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 502 def building_id @building_id end |
#building_name ⇒ String
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.
Corresponds to the JSON property buildingName
508 509 510 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 508 def building_name @building_name end |
#coordinates ⇒ Google::Apis::AdminDirectoryV1::BuildingCoordinates
Public API: Resources.buildings
Corresponds to the JSON property coordinates
513 514 515 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 513 def coordinates @coordinates end |
#description ⇒ String
A brief description of the building. For example, "Chelsea Market".
Corresponds to the JSON property description
518 519 520 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 518 def description @description end |
#etags ⇒ String
ETag of the resource.
Corresponds to the JSON property etags
523 524 525 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 523 def @etags end |
#floor_names ⇒ Array<String>
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.
Corresponds to the JSON property floorNames
530 531 532 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 530 def floor_names @floor_names end |
#kind ⇒ String
Kind of resource this is.
Corresponds to the JSON property kind
535 536 537 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 535 def kind @kind end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
542 543 544 545 546 547 548 549 550 551 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 542 def update!(**args) @address = args[:address] if args.key?(:address) @building_id = args[:building_id] if args.key?(:building_id) @building_name = args[:building_name] if args.key?(:building_name) @coordinates = args[:coordinates] if args.key?(:coordinates) @description = args[:description] if args.key?(:description) @etags = args[:etags] if args.key?(:etags) @floor_names = args[:floor_names] if args.key?(:floor_names) @kind = args[:kind] if args.key?(:kind) end |