Class: Google::Apis::PeopleV1::Nickname
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::PeopleV1::Nickname
 
- 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 nickname.
Instance Attribute Summary collapse
- 
  
    
      #metadata  ⇒ Google::Apis::PeopleV1::FieldMetadata 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Metadata about a field. 
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of the nickname. 
- 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The nickname. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Nickname 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Nickname. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Nickname
Returns a new instance of Nickname
| 1167 1168 1169 | # File 'generated/google/apis/people_v1/classes.rb', line 1167 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#metadata ⇒ Google::Apis::PeopleV1::FieldMetadata
Metadata about a field.
Corresponds to the JSON property metadata
| 1155 1156 1157 | # File 'generated/google/apis/people_v1/classes.rb', line 1155 def @metadata end | 
#type ⇒ String
The type of the nickname.
Corresponds to the JSON property type
| 1160 1161 1162 | # File 'generated/google/apis/people_v1/classes.rb', line 1160 def type @type end | 
#value ⇒ String
The nickname.
Corresponds to the JSON property value
| 1165 1166 1167 | # File 'generated/google/apis/people_v1/classes.rb', line 1165 def value @value end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1172 1173 1174 1175 1176 | # File 'generated/google/apis/people_v1/classes.rb', line 1172 def update!(**args) @metadata = args[:metadata] if args.key?(:metadata) @type = args[:type] if args.key?(:type) @value = args[:value] if args.key?(:value) end |