Class: AmznSpApi::FulfillmentInboundApiModel::PrepGuidance
- Inherits:
-
Object
- Object
- AmznSpApi::FulfillmentInboundApiModel::PrepGuidance
- Defined in:
- lib/fulfillment_inbound_api_model/models/prep_guidance.rb
Constant Summary collapse
- CONSULT_HELP_DOCUMENTS =
'ConsultHelpDocuments'.freeze
- NO_ADDITIONAL_PREP_REQUIRED =
'NoAdditionalPrepRequired'.freeze
- SEE_PREP_INSTRUCTIONS_LIST =
'SeePrepInstructionsList'.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/prep_guidance.rb', line 21 def build_from_hash(value) constantValues = PrepGuidance.constants.select { |c| PrepGuidance.const_get(c) == value } raise "Invalid ENUM value #{value} for class #PrepGuidance" if constantValues.empty? value end |