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.



2505
2506
2507
# File 'lib/google/apis/people_v1/classes.rb', line 2505

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)


2492
2493
2494
# File 'lib/google/apis/people_v1/classes.rb', line 2492

def current
  @current
end

#metadataGoogle::Apis::PeopleV1::FieldMetadata

Metadata about a field. Corresponds to the JSON property metadata



2498
2499
2500
# File 'lib/google/apis/people_v1/classes.rb', line 2498

def 
  @metadata
end

#valueString

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

Returns:

  • (String)


2503
2504
2505
# File 'lib/google/apis/people_v1/classes.rb', line 2503

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2510
2511
2512
2513
2514
# File 'lib/google/apis/people_v1/classes.rb', line 2510

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