Class: Google::Apis::PeopleV1::Residence

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/people_v1/classes.rb,
lib/google/apis/people_v1/representations.rb,
lib/google/apis/people_v1/representations.rb

Overview

DEPRECATED: Please use person.locations instead. A person's past or current residence.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Residence

Returns a new instance of Residence.



2293
2294
2295
# File 'lib/google/apis/people_v1/classes.rb', line 2293

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#currentBoolean 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

Returns:

  • (Boolean)


2280
2281
2282
# File 'lib/google/apis/people_v1/classes.rb', line 2280

def current
  @current
end

#metadataGoogle::Apis::PeopleV1::FieldMetadata

Metadata about a field. Corresponds to the JSON property metadata



2286
2287
2288
# File 'lib/google/apis/people_v1/classes.rb', line 2286

def 
  @metadata
end

#valueString

The address of the residence. Corresponds to the JSON property value

Returns:

  • (String)


2291
2292
2293
# File 'lib/google/apis/people_v1/classes.rb', line 2291

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2298
2299
2300
2301
2302
# File 'lib/google/apis/people_v1/classes.rb', line 2298

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