Class: Google::Apis::YoutubePartnerV1::IntervalCondition

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ IntervalCondition

Returns a new instance of IntervalCondition.



1845
1846
1847
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1845

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

Instance Attribute Details

#highFloat

The maximum (inclusive) allowed value for the condition to be satisfied. The default value is ∞. Corresponds to the JSON property high

Returns:

  • (Float)


1837
1838
1839
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1837

def high
  @high
end

#lowFloat

The minimum (inclusive) allowed value for the condition to be satisfied. The default value is -∞. Corresponds to the JSON property low

Returns:

  • (Float)


1843
1844
1845
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1843

def low
  @low
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1850
1851
1852
1853
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1850

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