Class: Google::Apis::TranscoderV1beta1::Overlay
- Inherits:
-
Object
- Object
- Google::Apis::TranscoderV1beta1::Overlay
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/transcoder_v1beta1/classes.rb,
lib/google/apis/transcoder_v1beta1/representations.rb,
lib/google/apis/transcoder_v1beta1/representations.rb
Overview
Overlay configuration.
Instance Attribute Summary collapse
-
#animations ⇒ Array<Google::Apis::TranscoderV1beta1::Animation>
List of Animations.
-
#image ⇒ Google::Apis::TranscoderV1beta1::Image
Overlaid jpeg image.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Overlay
constructor
A new instance of Overlay.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Overlay
Returns a new instance of Overlay.
1185 1186 1187 |
# File 'lib/google/apis/transcoder_v1beta1/classes.rb', line 1185 def initialize(**args) update!(**args) end |
Instance Attribute Details
#animations ⇒ Array<Google::Apis::TranscoderV1beta1::Animation>
List of Animations. The list should be chronological, without any time overlap.
Corresponds to the JSON property animations
1178 1179 1180 |
# File 'lib/google/apis/transcoder_v1beta1/classes.rb', line 1178 def animations @animations end |
#image ⇒ Google::Apis::TranscoderV1beta1::Image
Overlaid jpeg image.
Corresponds to the JSON property image
1183 1184 1185 |
# File 'lib/google/apis/transcoder_v1beta1/classes.rb', line 1183 def image @image end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1190 1191 1192 1193 |
# File 'lib/google/apis/transcoder_v1beta1/classes.rb', line 1190 def update!(**args) @animations = args[:animations] if args.key?(:animations) @image = args[:image] if args.key?(:image) end |