class Google::Apis::TranscoderV1::Overlay

Overlay configuration.

Attributes

animations[RW]

List of Animations. The list should be chronological, without any time overlap. Corresponds to the JSON property ‘animations` @return [Array<Google::Apis::TranscoderV1::Animation>]

image[RW]

Overlaid jpeg image. Corresponds to the JSON property ‘image` @return [Google::Apis::TranscoderV1::Image]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/transcoder_v1/classes.rb, line 1359
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_v1/classes.rb, line 1364
def update!(**args)
  @animations = args[:animations] if args.key?(:animations)
  @image = args[:image] if args.key?(:image)
end