Class: AmzSpApi::FulfillmentInboundApiModel::BarcodeInstruction
- Inherits:
-
Object
- Object
- AmzSpApi::FulfillmentInboundApiModel::BarcodeInstruction
- Defined in:
- lib/fulfillment-inbound-api-model/models/barcode_instruction.rb
Constant Summary collapse
- REQUIRES_FNSKU_LABEL =
'RequiresFNSKULabel'.freeze
- CAN_USE_ORIGINAL_BARCODE =
'CanUseOriginalBarcode'.freeze
- MUST_PROVIDE_SELLER_SKU =
'MustProvideSellerSKU'.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
23 24 25 26 27 |
# File 'lib/fulfillment-inbound-api-model/models/barcode_instruction.rb', line 23 def build_from_hash(value) constantValues = BarcodeInstruction.constants.select { |c| BarcodeInstruction::const_get(c) == value } raise "Invalid ENUM value #{value} for class #BarcodeInstruction" if constantValues.empty? value end |