/* tslint:disable */ /* eslint-disable */ /** * loans * 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. */ /** * Represents the loan transaction details. */ export interface LoanTransactionDetails { /** * The encoded key of the entity, generated, globally unique */ encodedKey?: string; /** * Whether the transaction was transferred between loans or deposit accounts */ internalTransfer?: boolean; /** * In case of a transaction to a deposit account this represent the deposit account key to which the transaction was made. */ targetDepositAccountKey?: string; /** * The ID of the transaction channel associated with the transaction details. */ transactionChannelId?: string; /** * The encoded key of the transaction channel associated with the transaction details. */ transactionChannelKey?: string; }