Class: Google::Apis::BloggerV2::PageList
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::BloggerV2::PageList
 
 
- 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 
Instance Attribute Summary collapse
- 
  
    
      #items  ⇒ Array<Google::Apis::BloggerV2::Page> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The list of Pages for a Blog.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The kind of this entity.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ PageList 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of PageList.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ PageList
Returns a new instance of PageList
      596 597 598  | 
    
      # File 'generated/google/apis/blogger_v2/classes.rb', line 596 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#items ⇒ Array<Google::Apis::BloggerV2::Page>
The list of Pages for a Blog.
Corresponds to the JSON property items
      589 590 591  | 
    
      # File 'generated/google/apis/blogger_v2/classes.rb', line 589 def items @items end  | 
  
#kind ⇒ String
The kind of this entity. Always blogger#pageList
Corresponds to the JSON property kind
      594 595 596  | 
    
      # File 'generated/google/apis/blogger_v2/classes.rb', line 594 def kind @kind end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      601 602 603 604  | 
    
      # File 'generated/google/apis/blogger_v2/classes.rb', line 601 def update!(**args) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) end  |