Class: Google::Apis::PeopleV1::Nickname
- Inherits:
-
Object
- Object
- Google::Apis::PeopleV1::Nickname
- 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
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.
Constructor Details
#initialize(**args) ⇒ Nickname
Returns a new instance of Nickname.
1731 1732 1733 |
# File 'lib/google/apis/people_v1/classes.rb', line 1731 def initialize(**args) update!(**args) end |
Instance Attribute Details
#metadata ⇒ Google::Apis::PeopleV1::FieldMetadata
Metadata about a field.
Corresponds to the JSON property metadata
1719 1720 1721 |
# File 'lib/google/apis/people_v1/classes.rb', line 1719 def @metadata end |
#type ⇒ String
The type of the nickname.
Corresponds to the JSON property type
1724 1725 1726 |
# File 'lib/google/apis/people_v1/classes.rb', line 1724 def type @type end |
#value ⇒ String
The nickname.
Corresponds to the JSON property value
1729 1730 1731 |
# File 'lib/google/apis/people_v1/classes.rb', line 1729 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1736 1737 1738 1739 1740 |
# File 'lib/google/apis/people_v1/classes.rb', line 1736 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 |