/* tslint:disable */ /* eslint-disable */ /** * loans/transactions * 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 TransactionBalances { /** * Captures the advance (prepaid) amount. */ advancePosition?: number; /** * Captures the arrears position amount for the account in arrears. */ arrearsPosition?: number; /** * The difference between principal balance and redraw balance after each transaction performed on the loan account. */ expectedPrincipalRedraw?: number; /** * The account redraw balance captured after the transaction update. */ principalBalance?: number; /** * The account redraw balance captured after the transaction update. */ redrawBalance?: number; /** * The running balance still owed for the loan. */ totalBalance?: number; }