Sha256: fa7ae2e738007fbf5f0fdfd81551c14dc064c45fd617056b1b2aa8a16f00ccd2
Contents?: true
Size: 868 Bytes
Versions: 2
Compression:
Stored size: 868 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 InstanceSource PUBLIC_URL = 'PUBLIC_URL'.freeze API_EMBEDDED = 'API_EMBEDDED'.freeze API_REMOTE = 'API_REMOTE'.freeze UI_REMOTE = 'UI_REMOTE'.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 = InstanceSource.constants.select { |c| InstanceSource::const_get(c) == value } raise "Invalid ENUM value #{value} for class #InstanceSource" if constantValues.empty? value end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
docusign_webforms-1.0.0 | lib/docusign_webforms/models/instance_source.rb |
docusign_webforms-1.0.2.rc12 | lib/docusign_webforms/models/instance_source.rb |