Balance Types

This is the list of the possible values for the balance type property of the Balance DTO.

Introduction.

BalanceType is a value sent back by the bank or sometimes inferred by mybanx. It does indicate if the balance is real-time or not, available or booked.

See below Values for more insights.

Values.

/// <summary>
/// Type of Balance you are receiving. Most of the time, this value is provided by the bank but in some cases might be inferred by mybanx.
/// </summary>
public enum BalanceType : int
{
    /// <summary>
    /// Closed Booked. That balance is true and fixed at the DateReference, must be beginning of the day.
    /// </summary>
    CLBD = 0,
    /// <summary>
    /// Closed Available. That balance represents the available amount at the DateReference, should be beginning of the day.This amount takes into account pending transactions.
    /// </summary>
    CLAV = 1,
    /// <summary>
    /// Interim Booked. That balance is true and fixed at the DateReference.
    /// </summary>
    ITBD = 2,
    /// <summary>
    /// Interim Available. That balance represents the available amount at the DateReference. This amount takes into account pending transactions.
    /// </summary>
    ITAV = 3,
    /// <summary>
    /// Unknown type of balance.
    /// </summary>
    OTHR = 99
}