Class: Google::Apis::BloggerV3::PostUserInfosList
- Inherits:
-
Object
- Object
- Google::Apis::BloggerV3::PostUserInfosList
- 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
-
#items ⇒ Array<Google::Apis::BloggerV3::PostUserInfo>
The list of Posts with User information for the post, 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) ⇒ PostUserInfosList
constructor
A new instance of PostUserInfosList.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PostUserInfosList
Returns a new instance of PostUserInfosList.
1230 1231 1232 |
# File 'generated/google/apis/blogger_v3/classes.rb', line 1230 def initialize(**args) update!(**args) end |
Instance Attribute Details
#items ⇒ Array<Google::Apis::BloggerV3::PostUserInfo>
The list of Posts with User information for the post, for this Blog.
Corresponds to the JSON property items
1218 1219 1220 |
# File 'generated/google/apis/blogger_v3/classes.rb', line 1218 def items @items end |
#kind ⇒ String
The kind of this entity. Always blogger#postList.
Corresponds to the JSON property kind
1223 1224 1225 |
# File 'generated/google/apis/blogger_v3/classes.rb', line 1223 def kind @kind end |
#next_page_token ⇒ String
Pagination token to fetch the next page, if one exists.
Corresponds to the JSON property nextPageToken
1228 1229 1230 |
# File 'generated/google/apis/blogger_v3/classes.rb', line 1228 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1235 1236 1237 1238 1239 |
# File 'generated/google/apis/blogger_v3/classes.rb', line 1235 def update!(**args) @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 |