Class: Google::Apis::PeopleV1::Skill
- Inherits:
-
Object
- Object
- Google::Apis::PeopleV1::Skill
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/people_v1/classes.rb,
generated/google/apis/people_v1/representations.rb,
generated/google/apis/people_v1/representations.rb
Overview
A skill that the person has.
Instance Attribute Summary collapse
-
#metadata ⇒ Google::Apis::PeopleV1::FieldMetadata
Metadata about a field.
-
#value ⇒ String
The skill; for example,
underwater basket weaving.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Skill
constructor
A new instance of Skill.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Skill
Returns a new instance of Skill
543 544 545 |
# File 'generated/google/apis/people_v1/classes.rb', line 543 def initialize(**args) update!(**args) end |
Instance Attribute Details
#metadata ⇒ Google::Apis::PeopleV1::FieldMetadata
Metadata about a field.
Corresponds to the JSON property metadata
536 537 538 |
# File 'generated/google/apis/people_v1/classes.rb', line 536 def @metadata end |
#value ⇒ String
The skill; for example, underwater basket weaving.
Corresponds to the JSON property value
541 542 543 |
# File 'generated/google/apis/people_v1/classes.rb', line 541 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
548 549 550 551 |
# File 'generated/google/apis/people_v1/classes.rb', line 548 def update!(**args) @metadata = args[:metadata] if args.key?(:metadata) @value = args[:value] if args.key?(:value) end |