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
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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Residence
Returns a new instance of Residence
1944 1945 1946 |
# File 'generated/google/apis/people_v1/classes.rb', line 1944 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
1931 1932 1933 |
# File 'generated/google/apis/people_v1/classes.rb', line 1931 def current @current end |
#metadata ⇒ Google::Apis::PeopleV1::FieldMetadata
Metadata about a field.
Corresponds to the JSON property metadata
1937 1938 1939 |
# File 'generated/google/apis/people_v1/classes.rb', line 1937 def @metadata end |
#value ⇒ String
The address of the residence.
Corresponds to the JSON property value
1942 1943 1944 |
# File 'generated/google/apis/people_v1/classes.rb', line 1942 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1949 1950 1951 1952 1953 |
# File 'generated/google/apis/people_v1/classes.rb', line 1949 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 |