Class: AmznSpApi::FulfillmentInboundApiModel::PrepOwner
- Inherits:
-
Object
- Object
- AmznSpApi::FulfillmentInboundApiModel::PrepOwner
- Defined in:
- lib/fulfillment_inbound_api_model/models/prep_owner.rb
Constant Summary collapse
- AMAZON =
'AMAZON'.freeze
- SELLER =
'SELLER'.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/fulfillment_inbound_api_model/models/prep_owner.rb', line 20 def build_from_hash(value) constantValues = PrepOwner.constants.select { |c| PrepOwner.const_get(c) == value } raise "Invalid ENUM value #{value} for class #PrepOwner" if constantValues.empty? value end |