Class: Google::Apis::PeopleV1::Residence
- Inherits:
-
Object
- Object
- Google::Apis::PeopleV1::Residence
- 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
DEPRECATED: Please use person.locations
instead. A person's past or
current residence.
Instance Attribute Summary collapse
-
#current ⇒ Boolean
(also: #current?)
True if the residence is the person's current residence; false if the residence is a past residence.
-
#metadata ⇒ Google::Apis::PeopleV1::FieldMetadata
Metadata about a field.
-
#value ⇒ String
The address of the residence.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Residence
constructor
A new instance of Residence.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Residence
Returns a new instance of Residence.
2254 2255 2256 |
# File 'generated/google/apis/people_v1/classes.rb', line 2254 def initialize(**args) update!(**args) end |
Instance Attribute Details
#current ⇒ Boolean Also known as: current?
True if the residence is the person's current residence; false if the
residence is a past residence.
Corresponds to the JSON property current
2241 2242 2243 |
# File 'generated/google/apis/people_v1/classes.rb', line 2241 def current @current end |
#metadata ⇒ Google::Apis::PeopleV1::FieldMetadata
Metadata about a field.
Corresponds to the JSON property metadata
2247 2248 2249 |
# File 'generated/google/apis/people_v1/classes.rb', line 2247 def @metadata end |
#value ⇒ String
The address of the residence.
Corresponds to the JSON property value
2252 2253 2254 |
# File 'generated/google/apis/people_v1/classes.rb', line 2252 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2259 2260 2261 2262 2263 |
# File 'generated/google/apis/people_v1/classes.rb', line 2259 def update!(**args) @current = args[:current] if args.key?(:current) @metadata = args[:metadata] if args.key?(:metadata) @value = args[:value] if args.key?(:value) end |