Class: EveApp::EveCentral::PriceResult
- Inherits:
-
Object
- Object
- EveApp::EveCentral::PriceResult
- Defined in:
- lib/eve_app/eve_central.rb
Instance Attribute Summary collapse
-
#average ⇒ Object
readonly
Returns the value of attribute average.
-
#max ⇒ Object
readonly
Returns the value of attribute max.
-
#median ⇒ Object
readonly
Returns the value of attribute median.
-
#min ⇒ Object
readonly
Returns the value of attribute min.
-
#percentile ⇒ Object
readonly
Returns the value of attribute percentile.
-
#stddev ⇒ Object
readonly
Returns the value of attribute stddev.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
-
#volume ⇒ Object
readonly
Returns the value of attribute volume.
Instance Method Summary collapse
-
#initialize(type, data) ⇒ PriceResult
constructor
A new instance of PriceResult.
Constructor Details
permalink #initialize(type, data) ⇒ PriceResult
Returns a new instance of PriceResult.
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
permalink #average ⇒ Object (readonly)
Returns the value of attribute average.
65 66 67 |
# File 'lib/eve_app/eve_central.rb', line 65 def average @average end |
permalink #max ⇒ Object (readonly)
Returns the value of attribute max.
65 66 67 |
# File 'lib/eve_app/eve_central.rb', line 65 def max @max end |
permalink #median ⇒ Object (readonly)
Returns the value of attribute median.
65 66 67 |
# File 'lib/eve_app/eve_central.rb', line 65 def median @median end |
permalink #min ⇒ Object (readonly)
Returns the value of attribute min.
65 66 67 |
# File 'lib/eve_app/eve_central.rb', line 65 def min @min end |
permalink #percentile ⇒ Object (readonly)
Returns the value of attribute percentile.
65 66 67 |
# File 'lib/eve_app/eve_central.rb', line 65 def percentile @percentile end |
permalink #stddev ⇒ Object (readonly)
Returns the value of attribute stddev.
65 66 67 |
# File 'lib/eve_app/eve_central.rb', line 65 def stddev @stddev end |
permalink #type ⇒ Object (readonly)
Returns the value of attribute type.
65 66 67 |
# File 'lib/eve_app/eve_central.rb', line 65 def type @type end |
permalink #volume ⇒ Object (readonly)
Returns the value of attribute volume.
65 66 67 |
# File 'lib/eve_app/eve_central.rb', line 65 def volume @volume end |