Class: Google::Apis::BloggerV2::Page::Author
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::BloggerV2::Page::Author
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/blogger_v2/classes.rb,
generated/google/apis/blogger_v2/representations.rb,
generated/google/apis/blogger_v2/representations.rb 
Overview
The author of this Page.
Defined Under Namespace
Classes: Image
Instance Attribute Summary collapse
- 
  
    
      #display_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The display name.
 - 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The identifier of the Page creator.
 - 
  
    
      #image  ⇒ Google::Apis::BloggerV2::Page::Author::Image 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The page author's avatar.
 - 
  
    
      #url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The URL of the Page creator's Profile page.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Author 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Author.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Author
Returns a new instance of Author
      530 531 532  | 
    
      # File 'generated/google/apis/blogger_v2/classes.rb', line 530 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#display_name ⇒ String
The display name.
Corresponds to the JSON property displayName
      513 514 515  | 
    
      # File 'generated/google/apis/blogger_v2/classes.rb', line 513 def display_name @display_name end  | 
  
#id ⇒ String
The identifier of the Page creator.
Corresponds to the JSON property id
      518 519 520  | 
    
      # File 'generated/google/apis/blogger_v2/classes.rb', line 518 def id @id end  | 
  
#image ⇒ Google::Apis::BloggerV2::Page::Author::Image
The page author's avatar.
Corresponds to the JSON property image
      523 524 525  | 
    
      # File 'generated/google/apis/blogger_v2/classes.rb', line 523 def image @image end  | 
  
#url ⇒ String
The URL of the Page creator's Profile page.
Corresponds to the JSON property url
      528 529 530  | 
    
      # File 'generated/google/apis/blogger_v2/classes.rb', line 528 def url @url end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      535 536 537 538 539 540  | 
    
      # File 'generated/google/apis/blogger_v2/classes.rb', line 535 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @id = args[:id] if args.key?(:id) @image = args[:image] if args.key?(:image) @url = args[:url] if args.key?(:url) end  |