Class: AmzSpApi::EasyShipModel::LabelFormat
- Inherits:
-
Object
- Object
- AmzSpApi::EasyShipModel::LabelFormat
- Defined in:
- lib/easy-ship-model/models/label_format.rb
Constant Summary collapse
- PDF =
'PDF'.freeze
- ZPL =
'ZPL'.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
22 23 24 25 26 |
# File 'lib/easy-ship-model/models/label_format.rb', line 22 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 |