Class: Google::Apis::BloggerV3::CommentList
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::BloggerV3::CommentList
 
- 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::Comment> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The List of Comments for a Post. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The kind of this entry. 
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Pagination token to fetch the next page, if one exists. 
- 
  
    
      #prev_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Pagination token to fetch the previous page, if one exists. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CommentList 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of CommentList. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CommentList
Returns a new instance of CommentList
| 536 537 538 | # File 'generated/google/apis/blogger_v3/classes.rb', line 536 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#etag ⇒ String
Etag of the response.
Corresponds to the JSON property etag
| 514 515 516 | # File 'generated/google/apis/blogger_v3/classes.rb', line 514 def etag @etag end | 
#items ⇒ Array<Google::Apis::BloggerV3::Comment>
The List of Comments for a Post.
Corresponds to the JSON property items
| 519 520 521 | # File 'generated/google/apis/blogger_v3/classes.rb', line 519 def items @items end | 
#kind ⇒ String
The kind of this entry. Always blogger#commentList
Corresponds to the JSON property kind
| 524 525 526 | # File 'generated/google/apis/blogger_v3/classes.rb', line 524 def kind @kind end | 
#next_page_token ⇒ String
Pagination token to fetch the next page, if one exists.
Corresponds to the JSON property nextPageToken
| 529 530 531 | # File 'generated/google/apis/blogger_v3/classes.rb', line 529 def next_page_token @next_page_token end | 
#prev_page_token ⇒ String
Pagination token to fetch the previous page, if one exists.
Corresponds to the JSON property prevPageToken
| 534 535 536 | # File 'generated/google/apis/blogger_v3/classes.rb', line 534 def prev_page_token @prev_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 541 542 543 544 545 546 547 | # File 'generated/google/apis/blogger_v3/classes.rb', line 541 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) @prev_page_token = args[:prev_page_token] if args.key?(:prev_page_token) end |