Class: Google::Apis::PeopleV1::MiscKeyword
- Inherits:
-
Object
- Object
- Google::Apis::PeopleV1::MiscKeyword
- 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
-
#formatted_type ⇒ String
Output only.
-
#metadata ⇒ Google::Apis::PeopleV1::FieldMetadata
Metadata about a field.
-
#type ⇒ String
The miscellaneous keyword type.
-
#value ⇒ String
The value of the miscellaneous keyword.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MiscKeyword
constructor
A new instance of MiscKeyword.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MiscKeyword
Returns a new instance of MiscKeyword.
1350 1351 1352 |
# File 'lib/google/apis/people_v1/classes.rb', line 1350 def initialize(**args) update!(**args) end |
Instance Attribute Details
#formatted_type ⇒ String
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
1333 1334 1335 |
# File 'lib/google/apis/people_v1/classes.rb', line 1333 def formatted_type @formatted_type end |
#metadata ⇒ Google::Apis::PeopleV1::FieldMetadata
Metadata about a field.
Corresponds to the JSON property metadata
1338 1339 1340 |
# File 'lib/google/apis/people_v1/classes.rb', line 1338 def @metadata end |
#type ⇒ String
The miscellaneous keyword type.
Corresponds to the JSON property type
1343 1344 1345 |
# File 'lib/google/apis/people_v1/classes.rb', line 1343 def type @type end |
#value ⇒ String
The value of the miscellaneous keyword.
Corresponds to the JSON property value
1348 1349 1350 |
# File 'lib/google/apis/people_v1/classes.rb', line 1348 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1355 1356 1357 1358 1359 1360 |
# File 'lib/google/apis/people_v1/classes.rb', line 1355 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 |