Class: AmznSpApi::MerchantFulfillmentApiModel::UnitOfLength
- Inherits:
-
Object
- Object
- AmznSpApi::MerchantFulfillmentApiModel::UnitOfLength
- Defined in:
- lib/merchant_fulfillment_api_model/models/unit_of_length.rb
Constant Summary collapse
- INCHES =
'inches'.freeze
- CENTIMETERS =
'centimeters'.freeze
Instance Method Summary collapse
-
#build_from_hash(value) ⇒ String
Builds the enum from string.
Instance Method Details
#build_from_hash(value) ⇒ String
Builds the enum from string
20 21 22 23 24 25 |
# File 'lib/merchant_fulfillment_api_model/models/unit_of_length.rb', line 20 def build_from_hash(value) constantValues = UnitOfLength.constants.select { |c| UnitOfLength.const_get(c) == value } raise "Invalid ENUM value #{value} for class #UnitOfLength" if constantValues.empty? value end |