=begin #Synctera API #

Let's build something great.

Welcome to the official reference documentation for Synctera APIs. Our APIs are the best way to automate your company's banking needs and are designed to be easy to understand and implement.

We're continuously growing this library and what you see here is just the start, but if you need something specific or have a question, contact us.

The version of the OpenAPI document: 0.60.0 Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.5.0 =end require 'date' require 'time' module SyncteraRubySdk class CustomerKycStatus UNVERIFIED = "UNVERIFIED".freeze REVIEW = "REVIEW".freeze PROVIDER_FAILURE = "PROVIDER_FAILURE".freeze ACCEPTED = "ACCEPTED".freeze REJECTED = "REJECTED".freeze PROVISIONAL = "PROVISIONAL".freeze def self.all_vars @all_vars ||= [UNVERIFIED, REVIEW, PROVIDER_FAILURE, ACCEPTED, REJECTED, PROVISIONAL].freeze end # Builds the enum from string # @param [String] The enum value in the form of the string # @return [String] The enum value def self.build_from_hash(value) new.build_from_hash(value) end # 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) return value if CustomerKycStatus.all_vars.include?(value) raise "Invalid ENUM value #{value} for class #CustomerKycStatus" end end end