Class: AmzSpApi::MerchantFulfillmentApiModel::LabelFormat

Inherits:
Object
  • Object
show all
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

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/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