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