Class: AmznSpApi::FulfillmentOutboundApiModel::FulfillmentOrderStatus

Inherits:
Object
  • Object
show all
Defined in:
lib/fulfillment_outbound_api_model/models/fulfillment_order_status.rb

Constant Summary collapse

NEW =
'New'.freeze
RECEIVED =
'Received'.freeze
PLANNING =
'Planning'.freeze
PROCESSING =
'Processing'.freeze
CANCELLED =
'Cancelled'.freeze
COMPLETE =
'Complete'.freeze
COMPLETE_PARTIALLED =
'CompletePartialled'.freeze
UNFULFILLABLE =
'Unfulfillable'.freeze
INVALID =
'Invalid'.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



27
28
29
30
31
32
# File 'lib/fulfillment_outbound_api_model/models/fulfillment_order_status.rb', line 27

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

  value
end