Class: Google::Apis::BloggerV3::PostUserInfosList
- Inherits:
-
Object
- Object
- Google::Apis::BloggerV3::PostUserInfosList
- 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
-
#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.
1242 1243 1244 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 1242 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
1230 1231 1232 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 1230 def items @items end |
#kind ⇒ String
The kind of this entity. Always blogger#postList.
Corresponds to the JSON property kind
1235 1236 1237 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 1235 def kind @kind end |
#next_page_token ⇒ String
Pagination token to fetch the next page, if one exists.
Corresponds to the JSON property nextPageToken
1240 1241 1242 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 1240 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1247 1248 1249 1250 1251 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 1247 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 |