Class: AmzSpApi::FulfillmentInboundApiModel::BarcodeInstruction

Inherits:
Object
  • Object
show all
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

Instance Method Details

#build_from_hash(value) ⇒ String

Builds the enum from string

Parameters:

  • The (String)

    enum value in the form of the string

Returns:

  • (String)

    The enum value



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