Sha256: 106502ef533acf329428fb7e12ea6b4ad92839d94ec88fd16a2c1c3dadcc9e1b
Contents?: true
Size: 1.67 KB
Versions: 4
Compression:
Stored size: 1.67 KB
Contents
=begin #Synctera API #<h2>Let's build something great.</h2><p>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.</p><p>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, <a class='text-blue-600' href='https://synctera.com/contact' target='_blank' rel='noreferrer'>contact us</a>.</p> 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 AddVendorAccountsErrorReason FAILED_VERIFICATION = "FAILED_VERIFICATION".freeze UNSUPPORTED_ACCOUNT_TYPE = "UNSUPPORTED_ACCOUNT_TYPE".freeze DUPLICATE_ACCOUNT = "DUPLICATE_ACCOUNT".freeze ACCOUNT_NOT_FOUND = "ACCOUNT_NOT_FOUND".freeze PROVIDER_ERROR = "PROVIDER_ERROR".freeze def self.all_vars @all_vars ||= [FAILED_VERIFICATION, UNSUPPORTED_ACCOUNT_TYPE, DUPLICATE_ACCOUNT, ACCOUNT_NOT_FOUND, PROVIDER_ERROR].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 AddVendorAccountsErrorReason.all_vars.include?(value) raise "Invalid ENUM value #{value} for class #AddVendorAccountsErrorReason" end end end
Version data entries
4 entries across 4 versions & 1 rubygems