Class: Google::Apis::CalendarV3::EventWorkingLocationProperties::OfficeLocation
- Inherits:
-
Object
- Object
- Google::Apis::CalendarV3::EventWorkingLocationProperties::OfficeLocation
- 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
-
#building_id ⇒ String
An optional building identifier.
-
#desk_id ⇒ String
An optional desk identifier.
-
#floor_id ⇒ String
An optional floor identifier.
-
#floor_section_id ⇒ String
An optional floor section identifier.
-
#label ⇒ String
The office name that's displayed in Calendar Web and Mobile clients.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OfficeLocation
constructor
A new instance of OfficeLocation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OfficeLocation
Returns a new instance of OfficeLocation.
2013 2014 2015 |
# File 'lib/google/apis/calendar_v3/classes.rb', line 2013 def initialize(**args) update!(**args) end |
Instance Attribute Details
#building_id ⇒ String
An optional building identifier. This should reference a building ID in the
organization's Resources database.
Corresponds to the JSON property buildingId
1989 1990 1991 |
# File 'lib/google/apis/calendar_v3/classes.rb', line 1989 def building_id @building_id end |
#desk_id ⇒ String
An optional desk identifier.
Corresponds to the JSON property deskId
1994 1995 1996 |
# File 'lib/google/apis/calendar_v3/classes.rb', line 1994 def desk_id @desk_id end |
#floor_id ⇒ String
An optional floor identifier.
Corresponds to the JSON property floorId
1999 2000 2001 |
# File 'lib/google/apis/calendar_v3/classes.rb', line 1999 def floor_id @floor_id end |
#floor_section_id ⇒ String
An optional floor section identifier.
Corresponds to the JSON property floorSectionId
2004 2005 2006 |
# File 'lib/google/apis/calendar_v3/classes.rb', line 2004 def floor_section_id @floor_section_id end |
#label ⇒ String
The office name that's displayed in Calendar Web and Mobile clients. We
recommend you reference a building name in the organization's Resources
database.
Corresponds to the JSON property label
2011 2012 2013 |
# File 'lib/google/apis/calendar_v3/classes.rb', line 2011 def label @label end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2018 2019 2020 2021 2022 2023 2024 |
# File 'lib/google/apis/calendar_v3/classes.rb', line 2018 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 |