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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ PostUserInfosList
Returns a new instance of PostUserInfosList
1224 1225 1226 |
# File 'generated/google/apis/blogger_v3/classes.rb', line 1224 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
1212 1213 1214 |
# File 'generated/google/apis/blogger_v3/classes.rb', line 1212 def items @items end |
#kind ⇒ String
The kind of this entity. Always blogger#postList
Corresponds to the JSON property kind
1217 1218 1219 |
# File 'generated/google/apis/blogger_v3/classes.rb', line 1217 def kind @kind end |
#next_page_token ⇒ String
Pagination token to fetch the next page, if one exists.
Corresponds to the JSON property nextPageToken
1222 1223 1224 |
# File 'generated/google/apis/blogger_v3/classes.rb', line 1222 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1229 1230 1231 1232 1233 |
# File 'generated/google/apis/blogger_v3/classes.rb', line 1229 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 |