Class: Google::Apis::PeopleV1::CoverPhoto

Inherits:
Object
  • Object
show all
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 read-only cover photo. A large image shown on the person's profile page that represents who they are or what they care about.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ CoverPhoto

Returns a new instance of CoverPhoto



470
471
472
# File 'generated/google/apis/people_v1/classes.rb', line 470

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

Instance Attribute Details

#defaultBoolean Also known as: default?

True if the cover photo is the default cover photo; false if the cover photo is a user-provided cover photo. Corresponds to the JSON property default

Returns:

  • (Boolean)


457
458
459
# File 'generated/google/apis/people_v1/classes.rb', line 457

def default
  @default
end

#metadataGoogle::Apis::PeopleV1::FieldMetadata

Metadata about a field. Corresponds to the JSON property metadata



463
464
465
# File 'generated/google/apis/people_v1/classes.rb', line 463

def 
  @metadata
end

#urlString

The URL of the cover photo. Corresponds to the JSON property url

Returns:

  • (String)


468
469
470
# File 'generated/google/apis/people_v1/classes.rb', line 468

def url
  @url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



475
476
477
478
479
# File 'generated/google/apis/people_v1/classes.rb', line 475

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