Class: AmznSpApi::EasyShipApiModel::LabelFormat
- Inherits:
-
Object
- Object
- AmznSpApi::EasyShipApiModel::LabelFormat
- Defined in:
- lib/easy_ship_api_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
20 21 22 23 24 25 |
# File 'lib/easy_ship_api_model/models/label_format.rb', line 20 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 |