Class: Google4R::Checkout::Weight
- Defined in:
- lib/google4r/checkout/shared.rb
Overview
This defines item weight
Constant Summary collapse
- LB =
Constants for unit
'LB'
Instance Attribute Summary
Attributes inherited from Unit
Instance Method Summary collapse
-
#initialize(value, unit = LB) ⇒ Weight
constructor
A new instance of Weight.
Methods inherited from Unit
Constructor Details
#initialize(value, unit = LB) ⇒ Weight
Returns a new instance of Weight.
1116 1117 1118 1119 |
# File 'lib/google4r/checkout/shared.rb', line 1116 def initialize(value, unit=LB) @unit = unit @value = value.to_f end |