Class: Google::Apis::BloggerV3::PageList
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::BloggerV3::PageList
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/blogger_v3/classes.rb,
 generated/google/apis/blogger_v3/representations.rb,
 generated/google/apis/blogger_v3/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #etag  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Etag of the response. 
- 
  
    
      #items  ⇒ Array<Google::Apis::BloggerV3::Page> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The list of Pages for a Blog. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The kind of this entity. 
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Pagination token to fetch the next page, if one exists. 
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
| 735 736 737 | # File 'generated/google/apis/blogger_v3/classes.rb', line 735 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#etag ⇒ String
Etag of the response.
Corresponds to the JSON property etag
| 718 719 720 | # File 'generated/google/apis/blogger_v3/classes.rb', line 718 def etag @etag end | 
#items ⇒ Array<Google::Apis::BloggerV3::Page>
The list of Pages for a Blog.
Corresponds to the JSON property items
| 723 724 725 | # File 'generated/google/apis/blogger_v3/classes.rb', line 723 def items @items end | 
#kind ⇒ String
The kind of this entity. Always blogger#pageList
Corresponds to the JSON property kind
| 728 729 730 | # File 'generated/google/apis/blogger_v3/classes.rb', line 728 def kind @kind end | 
#next_page_token ⇒ String
Pagination token to fetch the next page, if one exists.
Corresponds to the JSON property nextPageToken
| 733 734 735 | # File 'generated/google/apis/blogger_v3/classes.rb', line 733 def next_page_token @next_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 740 741 742 743 744 745 | # File 'generated/google/apis/blogger_v3/classes.rb', line 740 def update!(**args) @etag = args[:etag] if args.key?(:etag) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |