Class: EveApp::EveCentral::PriceResult

Inherits:
Object
  • Object
show all
Defined in:
lib/eve_app/eve_central.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(type, data) ⇒ PriceResult

Returns a new instance of PriceResult.

[View source]

67
68
69
70
71
72
73
74
75
# File 'lib/eve_app/eve_central.rb', line 67

def initialize(type, data)
  @type = type
  @volume = data[:volume].to_i
  @average = (data[:avg].to_f * 100).round
  @max = (data[:max].to_f * 100).round
  @min = (data[:min].to_f * 100).round
  @stddev = (data[:stdDev].to_f * 100).round
  @median = (data[:median].to_f * 100).round
end

Instance Attribute Details

#averageObject (readonly)

Returns the value of attribute average.


65
66
67
# File 'lib/eve_app/eve_central.rb', line 65

def average
  @average
end

#maxObject (readonly)

Returns the value of attribute max.


65
66
67
# File 'lib/eve_app/eve_central.rb', line 65

def max
  @max
end

#medianObject (readonly)

Returns the value of attribute median.


65
66
67
# File 'lib/eve_app/eve_central.rb', line 65

def median
  @median
end

#minObject (readonly)

Returns the value of attribute min.


65
66
67
# File 'lib/eve_app/eve_central.rb', line 65

def min
  @min
end

#percentileObject (readonly)

Returns the value of attribute percentile.


65
66
67
# File 'lib/eve_app/eve_central.rb', line 65

def percentile
  @percentile
end

#stddevObject (readonly)

Returns the value of attribute stddev.


65
66
67
# File 'lib/eve_app/eve_central.rb', line 65

def stddev
  @stddev
end

#typeObject (readonly)

Returns the value of attribute type.


65
66
67
# File 'lib/eve_app/eve_central.rb', line 65

def type
  @type
end

#volumeObject (readonly)

Returns the value of attribute volume.


65
66
67
# File 'lib/eve_app/eve_central.rb', line 65

def volume
  @volume
end