Class: DocuSign_WebForms::WebFormSource
- Inherits:
-
Object
- Object
- DocuSign_WebForms::WebFormSource
- Defined in:
- lib/docusign_webforms/models/web_form_source.rb
Constant Summary collapse
- TEMPLATES =
'templates'.freeze
- BLANK =
'blank'.freeze
- FORM =
'form'.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
24 25 26 27 28 |
# File 'lib/docusign_webforms/models/web_form_source.rb', line 24 def build_from_hash(value) constantValues = WebFormSource.constants.select { |c| WebFormSource::const_get(c) == value } raise "Invalid ENUM value #{value} for class #WebFormSource" if constantValues.empty? value end |