Class: AmznSpApi::FulfillmentInboundApiModel::LabelPrepType
- Inherits:
-
Object
- Object
- AmznSpApi::FulfillmentInboundApiModel::LabelPrepType
- 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
-
#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/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 |