Class: Google::Apis::PeopleV1::MiscKeyword

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 miscellaneous keyword.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MiscKeyword

Returns a new instance of MiscKeyword.



1531
1532
1533
# File 'lib/google/apis/people_v1/classes.rb', line 1531

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

Instance Attribute Details

#formatted_typeString

Output only. The type of the miscellaneous keyword translated and formatted in the viewer's account locale or the Accept-Language HTTP header locale. Corresponds to the JSON property formattedType

Returns:

  • (String)


1514
1515
1516
# File 'lib/google/apis/people_v1/classes.rb', line 1514

def formatted_type
  @formatted_type
end

#metadataGoogle::Apis::PeopleV1::FieldMetadata

Metadata about a field. Corresponds to the JSON property metadata



1519
1520
1521
# File 'lib/google/apis/people_v1/classes.rb', line 1519

def 
  @metadata
end

#typeString

The miscellaneous keyword type. Corresponds to the JSON property type

Returns:

  • (String)


1524
1525
1526
# File 'lib/google/apis/people_v1/classes.rb', line 1524

def type
  @type
end

#valueString

The value of the miscellaneous keyword. Corresponds to the JSON property value

Returns:

  • (String)


1529
1530
1531
# File 'lib/google/apis/people_v1/classes.rb', line 1529

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1536
1537
1538
1539
1540
1541
# File 'lib/google/apis/people_v1/classes.rb', line 1536

def update!(**args)
  @formatted_type = args[:formatted_type] if args.key?(:formatted_type)
  @metadata = args[:metadata] if args.key?(:metadata)
  @type = args[:type] if args.key?(:type)
  @value = args[:value] if args.key?(:value)
end