class Google::Apis::YoutubePartnerV1::PageInfo

Attributes

results_per_page[RW]

The number of results included in the API response. Corresponds to the JSON property `resultsPerPage` @return [Fixnum]

start_index[RW]

The index of the first item in the API response. Corresponds to the JSON property `startIndex` @return [Fixnum]

total_results[RW]

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 generated/google/apis/youtube_partner_v1/classes.rb, line 2554
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/youtube_partner_v1/classes.rb, line 2559
def update!(**args)
  @results_per_page = args[:results_per_page] if args.key?(:results_per_page)
  @start_index = args[:start_index] if args.key?(:start_index)
  @total_results = args[:total_results] if args.key?(:total_results)
end