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.
1136 1137 1138 1139 |
# File 'lib/google4r/checkout/shared.rb', line 1136 def initialize(value, unit=LB) @unit = unit @value = BigDecimal.new(value.to_s) end |