Class: AmznSpApi::MerchantFulfillmentApiModel::DeliveryExperienceOption
- Inherits:
-
Object
- Object
- AmznSpApi::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
23 24 25 26 27 28 |
# File 'lib/merchant_fulfillment_api_model/models/delivery_experience_option.rb', line 23 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 |