class Google::Apis::DfareportingV3_5::VideoOffset
Video Offset
Attributes
offset_percentage[RW]
Duration, as a percentage of video duration. Do not set when offsetSeconds is set. Acceptable values are 0 to 100, inclusive. Corresponds to the JSON property `offsetPercentage` @return [Fixnum]
offset_seconds[RW]
Duration, in seconds. Do not set when offsetPercentage is set. Acceptable values are 0 to 86399, inclusive. Corresponds to the JSON property `offsetSeconds` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dfareporting_v3_5/classes.rb, line 12691 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dfareporting_v3_5/classes.rb, line 12696 def update!(**args) @offset_percentage = args[:offset_percentage] if args.key?(:offset_percentage) @offset_seconds = args[:offset_seconds] if args.key?(:offset_seconds) end