Class: Google::Apis::BloggerV3::PageList
- Inherits:
-
Object
- Object
- Google::Apis::BloggerV3::PageList
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/blogger_v3/classes.rb,
lib/google/apis/blogger_v3/representations.rb,
lib/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.
Constructor Details
#initialize(**args) ⇒ PageList
Returns a new instance of PageList.
741 742 743 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 741 def initialize(**args) update!(**args) end |
Instance Attribute Details
#etag ⇒ String
Etag of the response.
Corresponds to the JSON property etag
724 725 726 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 724 def etag @etag end |
#items ⇒ Array<Google::Apis::BloggerV3::Page>
The list of Pages for a Blog.
Corresponds to the JSON property items
729 730 731 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 729 def items @items end |
#kind ⇒ String
The kind of this entity. Always blogger#pageList.
Corresponds to the JSON property kind
734 735 736 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 734 def kind @kind end |
#next_page_token ⇒ String
Pagination token to fetch the next page, if one exists.
Corresponds to the JSON property nextPageToken
739 740 741 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 739 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
746 747 748 749 750 751 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 746 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 |