Class: Google::Apis::BloggerV3::PostUserInfosList

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#itemsArray<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

#kindString

The kind of this entity. Always blogger#postList. Corresponds to the JSON property kind

Returns:

  • (String)


1235
1236
1237
# File 'lib/google/apis/blogger_v3/classes.rb', line 1235

def kind
  @kind
end

#next_page_tokenString

Pagination token to fetch the next page, if one exists. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


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