lib/lithic/models/instance_financial_account_type.rb



# frozen_string_literal: true

module Lithic
  module Models
    # Type of instance financial account
    module InstanceFinancialAccountType
      extend Lithic::Internal::Type::Enum

      ISSUING = :ISSUING
      RESERVE = :RESERVE
      OPERATING = :OPERATING
      CHARGED_OFF_FEES = :CHARGED_OFF_FEES
      CHARGED_OFF_INTEREST = :CHARGED_OFF_INTEREST
      CHARGED_OFF_PRINCIPAL = :CHARGED_OFF_PRINCIPAL
      SECURITY = :SECURITY
      PROGRAM_RECEIVABLES = :PROGRAM_RECEIVABLES

      # @!method self.values
      #   @return [Array<Symbol>]
    end
  end
end