Class: Google::Apis::BloggerV3::PostList
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::BloggerV3::PostList
 
- 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::Post> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The list of Posts for this 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)  ⇒ PostList 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of PostList. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ PostList
Returns a new instance of PostList
| 1117 1118 1119 | # File 'generated/google/apis/blogger_v3/classes.rb', line 1117 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#etag ⇒ String
Etag of the response.
Corresponds to the JSON property etag
| 1100 1101 1102 | # File 'generated/google/apis/blogger_v3/classes.rb', line 1100 def etag @etag end | 
#items ⇒ Array<Google::Apis::BloggerV3::Post>
The list of Posts for this Blog.
Corresponds to the JSON property items
| 1105 1106 1107 | # File 'generated/google/apis/blogger_v3/classes.rb', line 1105 def items @items end | 
#kind ⇒ String
The kind of this entity. Always blogger#postList
Corresponds to the JSON property kind
| 1110 1111 1112 | # File 'generated/google/apis/blogger_v3/classes.rb', line 1110 def kind @kind end | 
#next_page_token ⇒ String
Pagination token to fetch the next page, if one exists.
Corresponds to the JSON property nextPageToken
| 1115 1116 1117 | # File 'generated/google/apis/blogger_v3/classes.rb', line 1115 def next_page_token @next_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1122 1123 1124 1125 1126 1127 | # File 'generated/google/apis/blogger_v3/classes.rb', line 1122 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 |