Class: AmznSpApi::FulfillmentInboundApiModel::LabelPrepType

Inherits:
Object
  • Object
show all
Defined in:
lib/fulfillment_inbound_api_model/models/label_prep_type.rb

Constant Summary collapse

NO_LABEL =
'NO_LABEL'.freeze
SELLER_LABEL =
'SELLER_LABEL'.freeze
AMAZON_LABEL =
'AMAZON_LABEL'.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



21
22
23
24
25
26
# File 'lib/fulfillment_inbound_api_model/models/label_prep_type.rb', line 21

def build_from_hash(value)
  constantValues = LabelPrepType.constants.select { |c| LabelPrepType.const_get(c) == value }
  raise "Invalid ENUM value #{value} for class #LabelPrepType" if constantValues.empty?

  value
end