Class: Google::Apis::PeopleV1::CoverPhoto
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::PeopleV1::CoverPhoto
 
 
- 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
- 
  
    
      #default  ⇒ Boolean 
    
    
      (also: #default?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
True if the cover photo is the default cover photo; false if the cover photo is a user-provided cover photo.
 - 
  
    
      #metadata  ⇒ Google::Apis::PeopleV1::FieldMetadata 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Metadata about a field.
 - 
  
    
      #url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The URL of the cover photo.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CoverPhoto 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of CoverPhoto.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
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
#default ⇒ Boolean 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
      457 458 459  | 
    
      # File 'generated/google/apis/people_v1/classes.rb', line 457 def default @default end  | 
  
#metadata ⇒ Google::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  | 
  
#url ⇒ String
The URL of the cover photo.
Corresponds to the JSON property url
      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  |