Class: Google::Apis::AdminDirectoryV1::Building

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Building

Returns a new instance of Building.



300
301
302
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 300

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#addressGoogle::Apis::AdminDirectoryV1::BuildingAddress

JSON template for the postal address of a building in Directory API. Corresponds to the JSON property address



260
261
262
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 260

def address
  @address
end

#building_idString

Unique identifier for the building. The maximum length is 100 characters. Corresponds to the JSON property buildingId

Returns:

  • (String)


265
266
267
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 265

def building_id
  @building_id
end

#building_nameString

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

Returns:

  • (String)


271
272
273
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 271

def building_name
  @building_name
end

#coordinatesGoogle::Apis::AdminDirectoryV1::BuildingCoordinates

JSON template for coordinates of a building in Directory API. Corresponds to the JSON property coordinates



276
277
278
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 276

def coordinates
  @coordinates
end

#descriptionString

A brief description of the building. For example, "Chelsea Market". Corresponds to the JSON property description

Returns:

  • (String)


281
282
283
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 281

def description
  @description
end

#etagsString

ETag of the resource. Corresponds to the JSON property etags

Returns:

  • (String)


286
287
288
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 286

def etags
  @etags
end

#floor_namesArray<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

Returns:

  • (Array<String>)


293
294
295
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 293

def floor_names
  @floor_names
end

#kindString

Kind of resource this is. Corresponds to the JSON property kind

Returns:

  • (String)


298
299
300
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 298

def kind
  @kind
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



305
306
307
308
309
310
311
312
313
314
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 305

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