class Google::Apis::TranscoderV1beta1::TextInput
Identifies which input file and track should be used.
Attributes
key[RW]
Required. The `Input.key` that identifies the input file. Corresponds to the JSON property `key` @return [String]
track[RW]
Required. The zero-based index of the track in the input file. Corresponds to the JSON property `track` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/transcoder_v1beta1/classes.rb, line 1528 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 1533 def update!(**args) @key = args[:key] if args.key?(:key) @track = args[:track] if args.key?(:track) end