Class: Google::Apis::PeopleV1::Location
- Inherits:
-
Object
- Object
- Google::Apis::PeopleV1::Location
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/people_v1/classes.rb,
generated/google/apis/people_v1/representations.rb,
generated/google/apis/people_v1/representations.rb
Overview
A person's location.
Instance Attribute Summary collapse
-
#building_id ⇒ String
The building identifier.
-
#current ⇒ Boolean
(also: #current?)
Whether the location is the current location.
-
#desk_code ⇒ String
The individual desk location.
-
#floor ⇒ String
The floor name or number.
-
#floor_section ⇒ String
The floor section in
floor_name
. -
#metadata ⇒ Google::Apis::PeopleV1::FieldMetadata
Metadata about a field.
-
#type ⇒ String
The type of the location.
-
#value ⇒ String
The free-form value of the location.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Location
constructor
A new instance of Location.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Location
Returns a new instance of Location.
1237 1238 1239 |
# File 'generated/google/apis/people_v1/classes.rb', line 1237 def initialize(**args) update!(**args) end |
Instance Attribute Details
#building_id ⇒ String
The building identifier.
Corresponds to the JSON property buildingId
1198 1199 1200 |
# File 'generated/google/apis/people_v1/classes.rb', line 1198 def building_id @building_id end |
#current ⇒ Boolean Also known as: current?
Whether the location is the current location.
Corresponds to the JSON property current
1203 1204 1205 |
# File 'generated/google/apis/people_v1/classes.rb', line 1203 def current @current end |
#desk_code ⇒ String
The individual desk location.
Corresponds to the JSON property deskCode
1209 1210 1211 |
# File 'generated/google/apis/people_v1/classes.rb', line 1209 def desk_code @desk_code end |
#floor ⇒ String
The floor name or number.
Corresponds to the JSON property floor
1214 1215 1216 |
# File 'generated/google/apis/people_v1/classes.rb', line 1214 def floor @floor end |
#floor_section ⇒ String
The floor section in floor_name
.
Corresponds to the JSON property floorSection
1219 1220 1221 |
# File 'generated/google/apis/people_v1/classes.rb', line 1219 def floor_section @floor_section end |
#metadata ⇒ Google::Apis::PeopleV1::FieldMetadata
Metadata about a field.
Corresponds to the JSON property metadata
1224 1225 1226 |
# File 'generated/google/apis/people_v1/classes.rb', line 1224 def @metadata end |
#type ⇒ String
The type of the location. The type can be custom or one of these predefined
values: * desk
* grewUp
Corresponds to the JSON property type
1230 1231 1232 |
# File 'generated/google/apis/people_v1/classes.rb', line 1230 def type @type end |
#value ⇒ String
The free-form value of the location.
Corresponds to the JSON property value
1235 1236 1237 |
# File 'generated/google/apis/people_v1/classes.rb', line 1235 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 |
# File 'generated/google/apis/people_v1/classes.rb', line 1242 def update!(**args) @building_id = args[:building_id] if args.key?(:building_id) @current = args[:current] if args.key?(:current) @desk_code = args[:desk_code] if args.key?(:desk_code) @floor = args[:floor] if args.key?(:floor) @floor_section = args[:floor_section] if args.key?(:floor_section) @metadata = args[:metadata] if args.key?(:metadata) @type = args[:type] if args.key?(:type) @value = args[:value] if args.key?(:value) end |