/* 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. */ /** * Represents the accrued interest amounts for an Interest Applied deposit transaction. */ export interface DepositInterestAccruedAmounts { /** * The amount of positive interest accrued since last interest application/activation date and applied within Interest Applied transaction */ interestAccrued?: number; /** * The amount of negative interest accrued since last interest application/activation date and applied within Interest Applied transaction */ negativeInterestAccrued?: number; /** * The amount of overdraft interest accrued since last interest application/activation date and applied within Interest Applied transaction */ overdraftInterestAccrued?: number; /** * The amount of technical overdraft interest accrued since last interest application/activation date and applied within Interest Applied transaction */ technicalOverdraftInterestAccrued?: number; }