Class: Google::Apis::TranscoderV1beta1::ListJobsResponse
- Inherits:
-
Object
- Object
- Google::Apis::TranscoderV1beta1::ListJobsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/transcoder_v1beta1/classes.rb,
lib/google/apis/transcoder_v1beta1/representations.rb,
lib/google/apis/transcoder_v1beta1/representations.rb
Overview
Response message for TranscoderService.ListJobs
.
Instance Attribute Summary collapse
-
#jobs ⇒ Array<Google::Apis::TranscoderV1beta1::Job>
List of jobs in the specified region.
-
#next_page_token ⇒ String
The pagination token.
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.
972 973 974 |
# File 'lib/google/apis/transcoder_v1beta1/classes.rb', line 972 def initialize(**args) update!(**args) end |
Instance Attribute Details
#jobs ⇒ Array<Google::Apis::TranscoderV1beta1::Job>
List of jobs in the specified region.
Corresponds to the JSON property jobs
965 966 967 |
# File 'lib/google/apis/transcoder_v1beta1/classes.rb', line 965 def jobs @jobs end |
#next_page_token ⇒ String
The pagination token.
Corresponds to the JSON property nextPageToken
970 971 972 |
# File 'lib/google/apis/transcoder_v1beta1/classes.rb', line 970 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
977 978 979 980 |
# File 'lib/google/apis/transcoder_v1beta1/classes.rb', line 977 def update!(**args) @jobs = args[:jobs] if args.key?(:jobs) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |