Class: Google::Apis::YoutubereportingV1::ListJobsResponse
- Inherits:
-
Object
- Object
- Google::Apis::YoutubereportingV1::ListJobsResponse
- 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.ListJobs.
Instance Attribute Summary collapse
-
#jobs ⇒ Array<Google::Apis::YoutubereportingV1::Job>
The list of jobs.
-
#next_page_token ⇒ String
A token to retrieve next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListJobsResponse
constructor
A new instance of ListJobsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListJobsResponse
Returns a new instance of ListJobsResponse.
712 713 714 |
# File 'lib/google/apis/youtubereporting_v1/classes.rb', line 712 def initialize(**args) update!(**args) end |
Instance Attribute Details
#jobs ⇒ Array<Google::Apis::YoutubereportingV1::Job>
The list of jobs.
Corresponds to the JSON property jobs
703 704 705 |
# File 'lib/google/apis/youtubereporting_v1/classes.rb', line 703 def jobs @jobs end |
#next_page_token ⇒ String
A token to retrieve next page of results. Pass this value in the
ListJobsRequest.page_token field in the subsequent call to ListJobs method
to retrieve the next page of results.
Corresponds to the JSON property nextPageToken
710 711 712 |
# File 'lib/google/apis/youtubereporting_v1/classes.rb', line 710 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
717 718 719 720 |
# File 'lib/google/apis/youtubereporting_v1/classes.rb', line 717 def update!(**args) @jobs = args[:jobs] if args.key?(:jobs) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |