class Google::Apis::AndroidpublisherV3::ReviewsListResponse

Response listing reviews.

Attributes

page_info[RW]

Information about the current page. List operations that supports paging return only one “page” of results. This protocol buffer message describes the page that has been returned. Corresponds to the JSON property `pageInfo` @return [Google::Apis::AndroidpublisherV3::PageInfo]

reviews[RW]

List of reviews. Corresponds to the JSON property `reviews` @return [Array<Google::Apis::AndroidpublisherV3::Review>]

token_pagination[RW]

Pagination information returned by a List operation when token pagination is enabled. List operations that supports paging return only one “page” of results. This protocol buffer message describes the page that has been returned. When using token pagination, clients should use the next/previous token to get another page of the result. The presence or absence of next/ previous token indicates whether a next/previous page is available and provides a mean of accessing this page. ListRequest.page_token should be set to either next_page_token or previous_page_token to access another page. Corresponds to the JSON property `tokenPagination` @return [Google::Apis::AndroidpublisherV3::TokenPagination]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/androidpublisher_v3/classes.rb, line 1363
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/androidpublisher_v3/classes.rb, line 1368
def update!(**args)
  @page_info = args[:page_info] if args.key?(:page_info)
  @reviews = args[:reviews] if args.key?(:reviews)
  @token_pagination = args[:token_pagination] if args.key?(:token_pagination)
end