Class: Google::Apis::PeopleV1::Occupation
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::PeopleV1::Occupation
 
- 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 occupation.
Instance Attribute Summary collapse
- 
  
    
      #metadata  ⇒ Google::Apis::PeopleV1::FieldMetadata 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Metadata about a field. 
- 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The occupation; for example, carpenter.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Occupation 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Occupation. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Occupation
Returns a new instance of Occupation
| 1193 1194 1195 | # File 'generated/google/apis/people_v1/classes.rb', line 1193 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#metadata ⇒ Google::Apis::PeopleV1::FieldMetadata
Metadata about a field.
Corresponds to the JSON property metadata
| 1186 1187 1188 | # File 'generated/google/apis/people_v1/classes.rb', line 1186 def @metadata end | 
#value ⇒ String
The occupation; for example, carpenter.
Corresponds to the JSON property value
| 1191 1192 1193 | # File 'generated/google/apis/people_v1/classes.rb', line 1191 def value @value end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1198 1199 1200 1201 | # File 'generated/google/apis/people_v1/classes.rb', line 1198 def update!(**args) @metadata = args[:metadata] if args.key?(:metadata) @value = args[:value] if args.key?(:value) end |