class Kakaxi::Data::Humidity

Attributes

deficit[R]

Public Class Methods

new(value: nil, recorded_at: nil, interpolation: nil, deficit: nil) click to toggle source
Calls superclass method Kakaxi::Data::BaseData::new
# File lib/kakaxi/data/humidity.rb, line 8
def initialize(value: nil, recorded_at: nil, interpolation: nil, deficit: nil)
  @deficit = deficit
  super(value: value, recorded_at: recorded_at, interpolation: interpolation)
end