Class: Google::Apis::DfareportingV4::VideoOffset

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dfareporting_v4/classes.rb,
lib/google/apis/dfareporting_v4/representations.rb,
lib/google/apis/dfareporting_v4/representations.rb

Overview

Video Offset

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ VideoOffset

Returns a new instance of VideoOffset.



13246
13247
13248
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 13246

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#offset_percentageFixnum

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

Returns:

  • (Fixnum)


13238
13239
13240
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 13238

def offset_percentage
  @offset_percentage
end

#offset_secondsFixnum

Duration, in seconds. Do not set when offsetPercentage is set. Acceptable values are 0 to 86399, inclusive. Corresponds to the JSON property offsetSeconds

Returns:

  • (Fixnum)


13244
13245
13246
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 13244

def offset_seconds
  @offset_seconds
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



13251
13252
13253
13254
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 13251

def update!(**args)
  @offset_percentage = args[:offset_percentage] if args.key?(:offset_percentage)
  @offset_seconds = args[:offset_seconds] if args.key?(:offset_seconds)
end