Class: Google::Apis::PeopleV1::Nickname

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Nickname

Returns a new instance of Nickname.



1744
1745
1746
# File 'lib/google/apis/people_v1/classes.rb', line 1744

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#metadataGoogle::Apis::PeopleV1::FieldMetadata

Metadata about a field. Corresponds to the JSON property metadata



1732
1733
1734
# File 'lib/google/apis/people_v1/classes.rb', line 1732

def 
  @metadata
end

#typeString

The type of the nickname. Corresponds to the JSON property type

Returns:

  • (String)


1737
1738
1739
# File 'lib/google/apis/people_v1/classes.rb', line 1737

def type
  @type
end

#valueString

The nickname. Corresponds to the JSON property value

Returns:

  • (String)


1742
1743
1744
# File 'lib/google/apis/people_v1/classes.rb', line 1742

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1749
1750
1751
1752
1753
# File 'lib/google/apis/people_v1/classes.rb', line 1749

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