Class: Google::Apis::YoutubereportingV1::ListReportTypesResponse
- Inherits:
-
Object
- Object
- Google::Apis::YoutubereportingV1::ListReportTypesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/youtubereporting_v1/classes.rb,
generated/google/apis/youtubereporting_v1/representations.rb,
generated/google/apis/youtubereporting_v1/representations.rb
Overview
Response message for ReportingService.ListReportTypes.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token to retrieve next page of results.
-
#report_types ⇒ Array<Google::Apis::YoutubereportingV1::ReportType>
The list of report types.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListReportTypesResponse
constructor
A new instance of ListReportTypesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListReportTypesResponse
Returns a new instance of ListReportTypesResponse.
60 61 62 |
# File 'generated/google/apis/youtubereporting_v1/classes.rb', line 60 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token to retrieve next page of results. Pass this value in the
ListReportTypesRequest.page_token field in the subsequent call to
ListReportTypes
method to retrieve the next page of results.
Corresponds to the JSON property nextPageToken
58 59 60 |
# File 'generated/google/apis/youtubereporting_v1/classes.rb', line 58 def next_page_token @next_page_token end |
#report_types ⇒ Array<Google::Apis::YoutubereportingV1::ReportType>
The list of report types.
Corresponds to the JSON property reportTypes
51 52 53 |
# File 'generated/google/apis/youtubereporting_v1/classes.rb', line 51 def report_types @report_types end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
65 66 67 68 |
# File 'generated/google/apis/youtubereporting_v1/classes.rb', line 65 def update!(**args) @report_types = args[:report_types] if args.key?(:report_types) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |