Class: DocuSign_WebForms::WebFormState
- Inherits:
-
Object
- Object
- DocuSign_WebForms::WebFormState
- Defined in:
- lib/docusign_webforms/models/web_form_state.rb
Constant Summary collapse
- ACTIVE =
'active'.freeze
- DRAFT =
'draft'.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
23 24 25 26 27 |
# File 'lib/docusign_webforms/models/web_form_state.rb', line 23 def build_from_hash(value) constantValues = WebFormState.constants.select { |c| WebFormState::const_get(c) == value } raise "Invalid ENUM value #{value} for class #WebFormState" if constantValues.empty? value end |