Class: AmzSpApi::FulfillmentInboundApiModel::BoxContentsSource
- Inherits:
-
Object
- Object
- AmzSpApi::FulfillmentInboundApiModel::BoxContentsSource
- Defined in:
- lib/fulfillment-inbound-api-model/models/box_contents_source.rb
Constant Summary collapse
- NONE =
'NONE'.freeze
- FEED =
'FEED'.freeze
- N2_D_BARCODE =
'2D_BARCODE'.freeze
- INTERACTIVE =
'INTERACTIVE'.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
24 25 26 27 28 |
# File 'lib/fulfillment-inbound-api-model/models/box_contents_source.rb', line 24 def build_from_hash(value) constantValues = BoxContentsSource.constants.select { |c| BoxContentsSource::const_get(c) == value } raise "Invalid ENUM value #{value} for class #BoxContentsSource" if constantValues.empty? value end |