Class: AmzSpApi::MerchantFulfillmentApiModel::DeliveryExperienceType
- Inherits:
-
Object
- Object
- AmzSpApi::MerchantFulfillmentApiModel::DeliveryExperienceType
- Defined in:
- lib/merchant-fulfillment-api-model/models/delivery_experience_type.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
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
24 25 26 27 28 |
# File 'lib/merchant-fulfillment-api-model/models/delivery_experience_type.rb', line 24 def build_from_hash(value) constantValues = DeliveryExperienceType.constants.select { |c| DeliveryExperienceType::const_get(c) == value } raise "Invalid ENUM value #{value} for class #DeliveryExperienceType" if constantValues.empty? value end |