Class: AmznSpApi::FulfillmentInboundApiModel::BoxContentsSource
- Inherits:
-
Object
- Object
- AmznSpApi::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
22 23 24 25 26 27 |
# File 'lib/fulfillment_inbound_api_model/models/box_contents_source.rb', line 22 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 |