Class: Google::Apis::BloggerV2::CommentList
- Inherits:
-
Object
- Object
- Google::Apis::BloggerV2::CommentList
- 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
-
#etag ⇒ String
Etag of the response.
-
#items ⇒ Array<Google::Apis::BloggerV2::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.
537 538 539 |
# File 'generated/google/apis/blogger_v2/classes.rb', line 537 def initialize(**args) update!(**args) end |
Instance Attribute Details
#etag ⇒ String
Etag of the response.
Corresponds to the JSON property etag
515 516 517 |
# File 'generated/google/apis/blogger_v2/classes.rb', line 515 def etag @etag end |
#items ⇒ Array<Google::Apis::BloggerV2::Comment>
The List of Comments for a Post.
Corresponds to the JSON property items
520 521 522 |
# File 'generated/google/apis/blogger_v2/classes.rb', line 520 def items @items end |
#kind ⇒ String
The kind of this entry. Always blogger#commentList.
Corresponds to the JSON property kind
525 526 527 |
# File 'generated/google/apis/blogger_v2/classes.rb', line 525 def kind @kind end |
#next_page_token ⇒ String
Pagination token to fetch the next page, if one exists.
Corresponds to the JSON property nextPageToken
530 531 532 |
# File 'generated/google/apis/blogger_v2/classes.rb', line 530 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
535 536 537 |
# File 'generated/google/apis/blogger_v2/classes.rb', line 535 def prev_page_token @prev_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
542 543 544 545 546 547 548 |
# File 'generated/google/apis/blogger_v2/classes.rb', line 542 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 |