class Google::Apis::AndroidpublisherV3::PageInfo
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.
Attributes
result_per_page[RW]
Maximum number of results returned in one page. ! The number of results included in the API response. Corresponds to the JSON property `resultPerPage` @return [Fixnum]
start_index[RW]
Index of the first result returned in the current page. Corresponds to the JSON property `startIndex` @return [Fixnum]
total_results[RW]
Total number of results available on the backend ! The total number of results in the result set. Corresponds to the JSON property `totalResults` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/androidpublisher_v3/classes.rb, line 1105 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 1110 def update!(**args) @result_per_page = args[:result_per_page] if args.key?(:result_per_page) @start_index = args[:start_index] if args.key?(:start_index) @total_results = args[:total_results] if args.key?(:total_results) end