Sha256: b54c2391ae624c426cc2e40d63199b2102252f29abbe54fc4511eb05f307d2fa
Contents?: true
Size: 953 Bytes
Versions: 2
Compression:
Stored size: 953 Bytes
Contents
=begin #DocuSign Rooms API - v2 #An API for an integrator to access the features of DocuSign Rooms OpenAPI spec version: v2 Contact: devcenter@docusign.com Generated by: https://github.com/swagger-api/swagger-codegen.git =end require 'date' module DocuSign_Rooms class RolesFilterContextTypes ALL_ROLES = 'AllRoles'.freeze ASSIGNABLE_ROLES_BASED_ON_COMPANY_PERMISSIONS = 'AssignableRolesBasedOnCompanyPermissions'.freeze ASSIGNABLE_ROLES_BASED_ON_ALL_PERMISSIONS = 'AssignableRolesBasedOnAllPermissions'.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 = RolesFilterContextTypes.constants.select { |c| RolesFilterContextTypes::const_get(c) == value } raise "Invalid ENUM value #{value} for class #RolesFilterContextTypes" if constantValues.empty? value end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
docusign_rooms-1.3.0 | lib/docusign_rooms/models/roles_filter_context_types.rb |
docusign_rooms-1.2.0.rc1 | lib/docusign_rooms/models/roles_filter_context_types.rb |