Sha256: 1acaf363fcd7e98c6b01b2e56fbb07159b1040ece42932f206d7bdd9092fd74e
Contents?: true
Size: 794 Bytes
Versions: 2
Compression:
Stored size: 794 Bytes
Contents
=begin #Web Forms API version 1.1 #The Web Forms API facilitates generating semantic HTML forms around everyday contracts. OpenAPI spec version: 1.1.0 Contact: devcenter@docusign.com Generated by: https://github.com/swagger-api/swagger-codegen.git =end require 'date' module DocuSign_WebForms class WebFormType STANDALONE = 'standalone'.freeze HAS_ESIGN_TEMPLATE = 'hasEsignTemplate'.freeze # Builds the enum from string # @param [String] The enum value in the form of the string # @return [String] The enum value def build_from_hash(value) constantValues = WebFormType.constants.select { |c| WebFormType::const_get(c) == value } raise "Invalid ENUM value #{value} for class #WebFormType" if constantValues.empty? value end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
docusign_webforms-2.0.0 | lib/docusign_webforms/models/web_form_type.rb |
docusign_webforms-2.0.0.rc1 | lib/docusign_webforms/models/web_form_type.rb |