Class: FtcEventsClient::BarcodeElement
- Inherits:
-
Object
- Object
- FtcEventsClient::BarcodeElement
- Defined in:
- lib/ftc_events_client/models/barcode_element.rb
Constant Summary collapse
- DUCK =
'DUCK'.freeze
- TEAM_SHIPPING_ELEMENT =
'TEAM_SHIPPING_ELEMENT'.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/ftc_events_client/models/barcode_element.rb', line 22 def build_from_hash(value) constantValues = BarcodeElement.constants.select { |c| BarcodeElement::const_get(c) == value } raise "Invalid ENUM value #{value} for class #BarcodeElement" if constantValues.empty? value end |