Class: Google::Apis::CalendarV3::EventWorkingLocationProperties::OfficeLocation

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/calendar_v3/classes.rb,
lib/google/apis/calendar_v3/representations.rb,
lib/google/apis/calendar_v3/representations.rb

Overview

If present, specifies that the user is working from an office.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ OfficeLocation

Returns a new instance of OfficeLocation.



1908
1909
1910
# File 'lib/google/apis/calendar_v3/classes.rb', line 1908

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

Instance Attribute Details

#building_idString

An optional building identifier. This should reference a building ID in the organization's Resources database. Corresponds to the JSON property buildingId

Returns:

  • (String)


1886
1887
1888
# File 'lib/google/apis/calendar_v3/classes.rb', line 1886

def building_id
  @building_id
end

#desk_idString

An optional arbitrary desk identifier. Corresponds to the JSON property deskId

Returns:

  • (String)


1891
1892
1893
# File 'lib/google/apis/calendar_v3/classes.rb', line 1891

def desk_id
  @desk_id
end

#floor_idString

An optional arbitrary floor identifier. Corresponds to the JSON property floorId

Returns:

  • (String)


1896
1897
1898
# File 'lib/google/apis/calendar_v3/classes.rb', line 1896

def floor_id
  @floor_id
end

#floor_section_idString

An optional arbitrary floor section identifier. Corresponds to the JSON property floorSectionId

Returns:

  • (String)


1901
1902
1903
# File 'lib/google/apis/calendar_v3/classes.rb', line 1901

def floor_section_id
  @floor_section_id
end

#labelString

An optional extra label for additional information. Corresponds to the JSON property label

Returns:

  • (String)


1906
1907
1908
# File 'lib/google/apis/calendar_v3/classes.rb', line 1906

def label
  @label
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1913
1914
1915
1916
1917
1918
1919
# File 'lib/google/apis/calendar_v3/classes.rb', line 1913

def update!(**args)
  @building_id = args[:building_id] if args.key?(:building_id)
  @desk_id = args[:desk_id] if args.key?(:desk_id)
  @floor_id = args[:floor_id] if args.key?(:floor_id)
  @floor_section_id = args[:floor_section_id] if args.key?(:floor_section_id)
  @label = args[:label] if args.key?(:label)
end