Class: Google::Apis::PeopleV1::RelationshipInterest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::PeopleV1::RelationshipInterest
 
 
- 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 read-only relationship interest .
Instance Attribute Summary collapse
- 
  
    
      #formatted_value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
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.
 - 
  
    
      #metadata  ⇒ Google::Apis::PeopleV1::FieldMetadata 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Metadata about a field.
 - 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The kind of relationship the person is looking for.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ RelationshipInterest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of RelationshipInterest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ RelationshipInterest
Returns a new instance of RelationshipInterest
      1873 1874 1875  | 
    
      # File 'generated/google/apis/people_v1/classes.rb', line 1873 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#formatted_value ⇒ String
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
      1856 1857 1858  | 
    
      # File 'generated/google/apis/people_v1/classes.rb', line 1856 def formatted_value @formatted_value end  | 
  
#metadata ⇒ Google::Apis::PeopleV1::FieldMetadata
Metadata about a field.
Corresponds to the JSON property metadata
      1861 1862 1863  | 
    
      # File 'generated/google/apis/people_v1/classes.rb', line 1861 def @metadata end  | 
  
#value ⇒ String
The kind of relationship the person is looking for. The value can be custom or one of these predefined values:
frienddaterelationshipnetworkingCorresponds to the JSON propertyvalue
      1871 1872 1873  | 
    
      # File 'generated/google/apis/people_v1/classes.rb', line 1871 def value @value end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1878 1879 1880 1881 1882  | 
    
      # File 'generated/google/apis/people_v1/classes.rb', line 1878 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  |