class Google::Apis::TranscoderV1beta1::TextAtom
The mapping for the `Job.edit_list` atoms with text `EditAtom.inputs`.
Attributes
inputs[RW]
List of `Job.inputs` that should be embedded in this atom. Only one input is supported. Corresponds to the JSON property `inputs` @return [Array<Google::Apis::TranscoderV1beta1::TextInput>]
key[RW]
Required. The `EditAtom.key` that references atom with text inputs in the `Job. edit_list`. Corresponds to the JSON property `key` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/transcoder_v1beta1/classes.rb, line 1503 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 1508 def update!(**args) @inputs = args[:inputs] if args.key?(:inputs) @key = args[:key] if args.key?(:key) end