Sha256: 7130f11099ece6e1e52bd1be3f1e59ce0206d4af248ddf0ee5601958345a7cea

Contents?: true

Size: 1.47 KB

Versions: 4

Compression:

Stored size: 1.47 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 BalanceType
    ACCOUNT_BALANCE = "ACCOUNT_BALANCE".freeze
    AVAILABLE_BALANCE = "AVAILABLE_BALANCE".freeze
    ACCRUED_INTEREST_MTD = "ACCRUED_INTEREST_MTD".freeze

    def self.all_vars
      @all_vars ||= [ACCOUNT_BALANCE, AVAILABLE_BALANCE, ACCRUED_INTEREST_MTD].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 BalanceType.all_vars.include?(value)
      raise "Invalid ENUM value #{value} for class #BalanceType"
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
synctera_ruby_sdk-1.1.3 lib/synctera_ruby_sdk/models/balance_type.rb
synctera_ruby_sdk-1.1.2 lib/synctera_ruby_sdk/models/balance_type.rb
synctera_ruby_sdk-1.1.1 lib/synctera_ruby_sdk/models/balance_type.rb
synctera_ruby_sdk-1.0.0 lib/synctera_ruby_sdk/models/balance_type.rb