/* tslint:disable */ /* eslint-disable */ /** * cards * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * The balances changed within a transaction. */ export interface DepositTransactionBalances { /** * Courtesy pay balance available for the account at the time of the transaction */ availableCourtesy?: number; /** * Overdraft balance available at the time of the transaction */ availableOverdraft?: number; /** * Protection balance available at the time of the transaction */ availableProtection?: number; /** * The total available overdraft amount at the time of the transaction */ totalAvailableOverdraft?: number; /** * The running balance owed by deposit */ totalBalance?: number; }