Class: Google::Apis::PeopleV1::Skill

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 skill that the person has.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Skill

Returns a new instance of Skill.



2609
2610
2611
# File 'lib/google/apis/people_v1/classes.rb', line 2609

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

Instance Attribute Details

#metadataGoogle::Apis::PeopleV1::FieldMetadata

Metadata about a field. Corresponds to the JSON property metadata



2602
2603
2604
# File 'lib/google/apis/people_v1/classes.rb', line 2602

def 
  @metadata
end

#valueString

The skill; for example, underwater basket weaving. Corresponds to the JSON property value

Returns:

  • (String)


2607
2608
2609
# File 'lib/google/apis/people_v1/classes.rb', line 2607

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2614
2615
2616
2617
# File 'lib/google/apis/people_v1/classes.rb', line 2614

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