Class: Google::Apis::AdminDirectoryV1::Building
- Inherits:
-
Object
- Object
- Google::Apis::AdminDirectoryV1::Building
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/admin_directory_v1/classes.rb,
generated/google/apis/admin_directory_v1/representations.rb,
generated/google/apis/admin_directory_v1/representations.rb
Overview
JSON template for Building object in Directory API.
Instance Attribute Summary collapse
-
#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
JSON template for coordinates of a building in Directory API.
-
#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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Building
Returns a new instance of Building
295 296 297 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 295 def initialize(**args) update!(**args) end |
Instance Attribute Details
#building_id ⇒ String
Unique identifier for the building. The maximum length is 100 characters.
Corresponds to the JSON property buildingId
260 261 262 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 260 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
266 267 268 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 266 def building_name @building_name end |
#coordinates ⇒ Google::Apis::AdminDirectoryV1::BuildingCoordinates
JSON template for coordinates of a building in Directory API.
Corresponds to the JSON property coordinates
271 272 273 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 271 def coordinates @coordinates end |
#description ⇒ String
A brief description of the building. For example, "Chelsea Market".
Corresponds to the JSON property description
276 277 278 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 276 def description @description end |
#etags ⇒ String
ETag of the resource.
Corresponds to the JSON property etags
281 282 283 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 281 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
288 289 290 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 288 def floor_names @floor_names end |
#kind ⇒ String
Kind of resource this is.
Corresponds to the JSON property kind
293 294 295 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 293 def kind @kind end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
300 301 302 303 304 305 306 307 308 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 300 def update!(**args) @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 |