Class: AmzSpApi::MerchantFulfillmentApiModel::DeliveryExperienceOption

Inherits:
Object
  • Object
show all
Defined in:
lib/merchant-fulfillment-api-model/models/delivery_experience_option.rb

Constant Summary collapse

DELIVERY_CONFIRMATION_WITH_ADULT_SIGNATURE =
'DeliveryConfirmationWithAdultSignature'.freeze
DELIVERY_CONFIRMATION_WITH_SIGNATURE =
'DeliveryConfirmationWithSignature'.freeze
DELIVERY_CONFIRMATION_WITHOUT_SIGNATURE =
'DeliveryConfirmationWithoutSignature'.freeze
NO_TRACKING =
'NoTracking'.freeze
NO_PREFERENCE =
'NoPreference'.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



25
26
27
28
29
# File 'lib/merchant-fulfillment-api-model/models/delivery_experience_option.rb', line 25

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