Class: AmzSpApi::MerchantFulfillmentApiModel::DeliveryExperienceOption
- Inherits:
-
Object
- Object
- AmzSpApi::MerchantFulfillmentApiModel::DeliveryExperienceOption
- 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
-
#build_from_hash(value) ⇒ String
Builds the enum from string.
Instance Method Details
#build_from_hash(value) ⇒ String
Builds the enum from string
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 |