Class: Google::Apis::YoutubereportingV1::ListReportsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/youtubereporting_v1/classes.rb,
lib/google/apis/youtubereporting_v1/representations.rb,
lib/google/apis/youtubereporting_v1/representations.rb

Overview

Response message for ReportingService.ListReports.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListReportsResponse

Returns a new instance of ListReportsResponse.



739
740
741
# File 'lib/google/apis/youtubereporting_v1/classes.rb', line 739

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

A token to retrieve next page of results. Pass this value in the ListReportsRequest.page_token field in the subsequent call to ListReports method to retrieve the next page of results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


732
733
734
# File 'lib/google/apis/youtubereporting_v1/classes.rb', line 732

def next_page_token
  @next_page_token
end

#reportsArray<Google::Apis::YoutubereportingV1::Report>

The list of report types. Corresponds to the JSON property reports



737
738
739
# File 'lib/google/apis/youtubereporting_v1/classes.rb', line 737

def reports
  @reports
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



744
745
746
747
# File 'lib/google/apis/youtubereporting_v1/classes.rb', line 744

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @reports = args[:reports] if args.key?(:reports)
end