Class: Google::Apis::PeopleV1::Biography

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 person's short biography.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Biography

Returns a new instance of Biography.



331
332
333
# File 'lib/google/apis/people_v1/classes.rb', line 331

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

Instance Attribute Details

#content_typeString

The content type of the biography. Corresponds to the JSON property contentType

Returns:

  • (String)


319
320
321
# File 'lib/google/apis/people_v1/classes.rb', line 319

def content_type
  @content_type
end

#metadataGoogle::Apis::PeopleV1::FieldMetadata

Metadata about a field. Corresponds to the JSON property metadata



324
325
326
# File 'lib/google/apis/people_v1/classes.rb', line 324

def 
  @metadata
end

#valueString

The short biography. Corresponds to the JSON property value

Returns:

  • (String)


329
330
331
# File 'lib/google/apis/people_v1/classes.rb', line 329

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



336
337
338
339
340
# File 'lib/google/apis/people_v1/classes.rb', line 336

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