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.



1547
1548
1549
# File 'lib/google/apis/people_v1/classes.rb', line 1547

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

Instance Attribute Details

#metadataGoogle::Apis::PeopleV1::FieldMetadata

Metadata about a field. Corresponds to the JSON property metadata



1535
1536
1537
# File 'lib/google/apis/people_v1/classes.rb', line 1535

def 
  @metadata
end

#typeString

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

Returns:

  • (String)


1540
1541
1542
# File 'lib/google/apis/people_v1/classes.rb', line 1540

def type
  @type
end

#valueString

The nickname. Corresponds to the JSON property value

Returns:

  • (String)


1545
1546
1547
# File 'lib/google/apis/people_v1/classes.rb', line 1545

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1552
1553
1554
1555
1556
# File 'lib/google/apis/people_v1/classes.rb', line 1552

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