/* tslint:disable */ /* eslint-disable */ /** * fundingsources * 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 amounts affected after completing the deposit transaction */ export interface DepositAffectedAmounts { /** * The part of overdraft amount covered by courtesy pay for this transaction */ courtesyAmount?: number; /** * Amount of fees involved in a transaction that affects an account with positive balance */ feesAmount?: number; /** * In the case of an LOAN_FRACTION_BOUGHT this represent the fraction amount which was bought from another investor */ fractionAmount?: number; /** * Balance change amount involved in a transaction that affects an account with positive balance */ fundsAmount?: number; /** * Amount of interest involved in a transaction that affects an account with positive balance */ interestAmount?: number; /** * The amount of money that was added/subtracted from the account by this transaction as overdraft */ overdraftAmount?: number; /** * Fees amount involved in a transaction that affects an overdraft */ overdraftFeesAmount?: number; /** * Interest amount involved in a transaction that affects an overdraft */ overdraftInterestAmount?: number; /** * The part of overdraft amount covered by overdraft limit/protection for this transaction */ protectionAmount?: number; /** * The amount of money that was added/subtracted from the account by this transaction as technical overdraft */ technicalOverdraftAmount?: number; /** * The amount of money that was added/subtracted from the account by this transaction as technical overdraft interest */ technicalOverdraftInterestAmount?: number; /** * The total overdraft amount for this transaction */ totalOverdraftAmount?: number; }