class Google::Apis::TranscoderV1beta1::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::TranscoderV1beta1::Job>]

next_page_token[RW]

The pagination token. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/transcoder_v1beta1/classes.rb, line 972
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_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