class Google::Apis::YoutubePartnerV1::ExcludedInterval
Attributes
The end (inclusive) time in seconds of the time window. The value can be any value greater than low. If high is greater than the length of the reference, the interval between low and the end of the reference will be excluded. Every interval must specify a value for this field. Corresponds to the JSON property `high` @return [Float]
The start (inclusive) time in seconds of the time window. The value can be any value between 0 and high. Every interval must specify a value for this field. Corresponds to the JSON property `low` @return [Float]
The source of the request to exclude the interval from Content ID matching. Corresponds to the JSON property `origin` @return [String]
The date and time that the exclusion was created. The value is specified in RFC 3339 (YYYY-MM-DDThh:mm:ss.000Z) format. Corresponds to the JSON property `timeCreated` @return [String]
Public Class Methods
# File lib/google/apis/youtube_partner_v1/classes.rb, line 1822 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/youtube_partner_v1/classes.rb, line 1827 def update!(**args) @high = args[:high] if args.key?(:high) @low = args[:low] if args.key?(:low) @origin = args[:origin] if args.key?(:origin) @time_created = args[:time_created] if args.key?(:time_created) end