Class: AmznSpApi::FulfillmentOutboundApiModel::InvalidItemReasonCode
- Inherits:
-
Object
- Object
- AmznSpApi::FulfillmentOutboundApiModel::InvalidItemReasonCode
- Defined in:
- lib/fulfillment_outbound_api_model/models/invalid_item_reason_code.rb
Constant Summary collapse
- INVALID_VALUES =
'InvalidValues'.freeze
- DUPLICATE_REQUEST =
'DuplicateRequest'.freeze
- NO_COMPLETED_SHIP_ITEMS =
'NoCompletedShipItems'.freeze
- NO_RETURNABLE_QUANTITY =
'NoReturnableQuantity'.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
22 23 24 25 26 27 |
# File 'lib/fulfillment_outbound_api_model/models/invalid_item_reason_code.rb', line 22 def build_from_hash(value) constantValues = InvalidItemReasonCode.constants.select { |c| InvalidItemReasonCode.const_get(c) == value } raise "Invalid ENUM value #{value} for class #InvalidItemReasonCode" if constantValues.empty? value end |