Class: Google::Apis::PeopleV1::Biography
- Inherits:
-
Object
- Object
- Google::Apis::PeopleV1::Biography
- 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 person's short biography.
Instance Attribute Summary collapse
-
#content_type ⇒ String
The content type of the biography.
-
#metadata ⇒ Google::Apis::PeopleV1::FieldMetadata
Metadata about a field.
-
#value ⇒ String
The short biography.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Biography
constructor
A new instance of Biography.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Biography
Returns a new instance of Biography
1542 1543 1544 |
# File 'generated/google/apis/people_v1/classes.rb', line 1542 def initialize(**args) update!(**args) end |
Instance Attribute Details
#content_type ⇒ String
The content type of the biography.
Corresponds to the JSON property contentType
1540 1541 1542 |
# File 'generated/google/apis/people_v1/classes.rb', line 1540 def content_type @content_type end |
#metadata ⇒ Google::Apis::PeopleV1::FieldMetadata
Metadata about a field.
Corresponds to the JSON property metadata
1530 1531 1532 |
# File 'generated/google/apis/people_v1/classes.rb', line 1530 def @metadata end |
#value ⇒ String
The short biography.
Corresponds to the JSON property value
1535 1536 1537 |
# File 'generated/google/apis/people_v1/classes.rb', line 1535 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1547 1548 1549 1550 1551 |
# File 'generated/google/apis/people_v1/classes.rb', line 1547 def update!(**args) @metadata = args[:metadata] if args.key?(:metadata) @value = args[:value] if args.key?(:value) @content_type = args[:content_type] if args.key?(:content_type) end |