Class: Google::Apis::PeopleV1::Skill
- Inherits:
-
Object
- Object
- Google::Apis::PeopleV1::Skill
- 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 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.
Constructor Details
#initialize(**args) ⇒ Skill
Returns a new instance of Skill.
2393 2394 2395 |
# File 'lib/google/apis/people_v1/classes.rb', line 2393 def initialize(**args) update!(**args) end |
Instance Attribute Details
#metadata ⇒ Google::Apis::PeopleV1::FieldMetadata
Metadata about a field.
Corresponds to the JSON property metadata
2386 2387 2388 |
# File 'lib/google/apis/people_v1/classes.rb', line 2386 def @metadata end |
#value ⇒ String
The skill; for example, underwater basket weaving.
Corresponds to the JSON property value
2391 2392 2393 |
# File 'lib/google/apis/people_v1/classes.rb', line 2391 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2398 2399 2400 2401 |
# File 'lib/google/apis/people_v1/classes.rb', line 2398 def update!(**args) @metadata = args[:metadata] if args.key?(:metadata) @value = args[:value] if args.key?(:value) end |