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.
454 455 456 |
# File 'generated/google/apis/people_v1/classes.rb', line 454 def initialize(**args) update!(**args) end |
Instance Attribute Details
#metadata ⇒ Google::Apis::PeopleV1::FieldMetadata
Metadata about a field.
Corresponds to the JSON property metadata
442 443 444 |
# File 'generated/google/apis/people_v1/classes.rb', line 442 def @metadata end |
#type ⇒ String
The type of the nickname.
Corresponds to the JSON property type
452 453 454 |
# File 'generated/google/apis/people_v1/classes.rb', line 452 def type @type end |
#value ⇒ String
The nickname.
Corresponds to the JSON property value
447 448 449 |
# File 'generated/google/apis/people_v1/classes.rb', line 447 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
459 460 461 462 463 |
# File 'generated/google/apis/people_v1/classes.rb', line 459 def update!(**args) @metadata = args[:metadata] if args.key?(:metadata) @value = args[:value] if args.key?(:value) @type = args[:type] if args.key?(:type) end |