Class: AmzSpApi::MerchantFulfillmentApiModel::LabelFormat
- Inherits:
-
Object
- Object
- AmzSpApi::MerchantFulfillmentApiModel::LabelFormat
- Defined in:
- lib/merchant-fulfillment-api-model/models/label_format.rb
Constant Summary collapse
- PDF =
'PDF'.freeze
- PNG =
'PNG'.freeze
- ZPL203 =
'ZPL203'.freeze
- ZPL300 =
'ZPL300'.freeze
- SHIPPING_SERVICE_DEFAULT =
'ShippingServiceDefault'.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/label_format.rb', line 25 def build_from_hash(value) constantValues = LabelFormat.constants.select { |c| LabelFormat::const_get(c) == value } raise "Invalid ENUM value #{value} for class #LabelFormat" if constantValues.empty? value end |