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.



2007
2008
2009
# File 'lib/google/apis/calendar_v3/classes.rb', line 2007

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)


1983
1984
1985
# File 'lib/google/apis/calendar_v3/classes.rb', line 1983

def building_id
  @building_id
end

#desk_idString

An optional desk identifier. Corresponds to the JSON property deskId

Returns:

  • (String)


1988
1989
1990
# File 'lib/google/apis/calendar_v3/classes.rb', line 1988

def desk_id
  @desk_id
end

#floor_idString

An optional floor identifier. Corresponds to the JSON property floorId

Returns:

  • (String)


1993
1994
1995
# File 'lib/google/apis/calendar_v3/classes.rb', line 1993

def floor_id
  @floor_id
end

#floor_section_idString

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

Returns:

  • (String)


1998
1999
2000
# File 'lib/google/apis/calendar_v3/classes.rb', line 1998

def floor_section_id
  @floor_section_id
end

#labelString

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

Returns:

  • (String)


2005
2006
2007
# File 'lib/google/apis/calendar_v3/classes.rb', line 2005

def label
  @label
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2012
2013
2014
2015
2016
2017
2018
# File 'lib/google/apis/calendar_v3/classes.rb', line 2012

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