Class: Google::Apis::PeopleV1::RelationshipInterest

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: No data will be returned A person's relationship interest .

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RelationshipInterest

Returns a new instance of RelationshipInterest.



2419
2420
2421
# File 'lib/google/apis/people_v1/classes.rb', line 2419

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

Instance Attribute Details

#formatted_valueString

Output only. The value of the relationship interest translated and formatted in the viewer's account locale or the locale specified in the Accept-Language HTTP header. Corresponds to the JSON property formattedValue

Returns:

  • (String)


2405
2406
2407
# File 'lib/google/apis/people_v1/classes.rb', line 2405

def formatted_value
  @formatted_value
end

#metadataGoogle::Apis::PeopleV1::FieldMetadata

Metadata about a field. Corresponds to the JSON property metadata



2410
2411
2412
# File 'lib/google/apis/people_v1/classes.rb', line 2410

def 
  @metadata
end

#valueString

The kind of relationship the person is looking for. The value can be custom or one of these predefined values: * friend * date * relationship * networking Corresponds to the JSON property value

Returns:

  • (String)


2417
2418
2419
# File 'lib/google/apis/people_v1/classes.rb', line 2417

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2424
2425
2426
2427
2428
# File 'lib/google/apis/people_v1/classes.rb', line 2424

def update!(**args)
  @formatted_value = args[:formatted_value] if args.key?(:formatted_value)
  @metadata = args[:metadata] if args.key?(:metadata)
  @value = args[:value] if args.key?(:value)
end