Class: Google::Apis::BloggerV2::PostList
- Inherits:
-
Object
- Object
- Google::Apis::BloggerV2::PostList
- 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::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.
-
#prev_page_token ⇒ String
Pagination token to fetch the previous 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.
Constructor Details
#initialize(**args) ⇒ PostList
Returns a new instance of PostList.
1066 1067 1068 |
# File 'generated/google/apis/blogger_v2/classes.rb', line 1066 def initialize(**args) update!(**args) end |
Instance Attribute Details
#etag ⇒ String
Etag of the response.
Corresponds to the JSON property etag
1044 1045 1046 |
# File 'generated/google/apis/blogger_v2/classes.rb', line 1044 def etag @etag end |
#items ⇒ Array<Google::Apis::BloggerV2::Post>
The list of Posts for this Blog.
Corresponds to the JSON property items
1049 1050 1051 |
# File 'generated/google/apis/blogger_v2/classes.rb', line 1049 def items @items end |
#kind ⇒ String
The kind of this entity. Always blogger#postList.
Corresponds to the JSON property kind
1054 1055 1056 |
# File 'generated/google/apis/blogger_v2/classes.rb', line 1054 def kind @kind end |
#next_page_token ⇒ String
Pagination token to fetch the next page, if one exists.
Corresponds to the JSON property nextPageToken
1059 1060 1061 |
# File 'generated/google/apis/blogger_v2/classes.rb', line 1059 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
1064 1065 1066 |
# File 'generated/google/apis/blogger_v2/classes.rb', line 1064 def prev_page_token @prev_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1071 1072 1073 1074 1075 1076 1077 |
# File 'generated/google/apis/blogger_v2/classes.rb', line 1071 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 |