class Google::Apis::TranscoderV1beta1::ListJobTemplatesResponse
Response message for `TranscoderService.ListJobTemplates`.
Attributes
job_templates[RW]
List of job templates in the specified region. Corresponds to the JSON property `jobTemplates` @return [Array<Google::Apis::TranscoderV1beta1::JobTemplate>]
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 947 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 952 def update!(**args) @job_templates = args[:job_templates] if args.key?(:job_templates) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end