class Google::Apis::TranscoderV1::ListJobsResponse
Response message for ‘TranscoderService.ListJobs`.
Attributes
jobs[RW]
List of jobs in the specified region. Corresponds to the JSON property ‘jobs` @return [Array<Google::Apis::TranscoderV1::Job>]
next_page_token[RW]
The pagination token. Corresponds to the JSON property ‘nextPageToken` @return [String]
unreachable[RW]
List of regions that could not be reached. Corresponds to the JSON property ‘unreachable` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/transcoder_v1/classes.rb, line 1201 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/transcoder_v1/classes.rb, line 1206 def update!(**args) @jobs = args[:jobs] if args.key?(:jobs) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) end