class Google::Apis::YoutubePartnerV1::IntervalCondition
Attributes
high[RW]
The maximum (inclusive) allowed value for the condition to be satisfied. The default value is ∞. Corresponds to the JSON property `high` @return [Float]
low[RW]
The minimum (inclusive) allowed value for the condition to be satisfied. The default value is -∞. Corresponds to the JSON property `low` @return [Float]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/youtube_partner_v1/classes.rb, line 1762 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/youtube_partner_v1/classes.rb, line 1767 def update!(**args) @high = args[:high] if args.key?(:high) @low = args[:low] if args.key?(:low) end