Class: Google::Apis::TranscoderV1beta1::Overlay
- Inherits:
-
Object
- Object
- Google::Apis::TranscoderV1beta1::Overlay
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/transcoder_v1beta1/classes.rb,
generated/google/apis/transcoder_v1beta1/representations.rb,
generated/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.
1183 1184 1185 |
# File 'generated/google/apis/transcoder_v1beta1/classes.rb', line 1183 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
1176 1177 1178 |
# File 'generated/google/apis/transcoder_v1beta1/classes.rb', line 1176 def animations @animations end |
#image ⇒ Google::Apis::TranscoderV1beta1::Image
Overlaid jpeg image.
Corresponds to the JSON property image
1181 1182 1183 |
# File 'generated/google/apis/transcoder_v1beta1/classes.rb', line 1181 def image @image end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1188 1189 1190 1191 |
# File 'generated/google/apis/transcoder_v1beta1/classes.rb', line 1188 def update!(**args) @animations = args[:animations] if args.key?(:animations) @image = args[:image] if args.key?(:image) end |