/* tslint:disable */ /* eslint-disable */ /** * deposits * 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 information about internal controls. */ export interface DepositAccountInternalControls { /** * The maximum deposit balance of the account. */ maxDepositBalance?: number; /** * The maximum amount allowed for a withdrawal. */ maxWithdrawalAmount?: number; /** * The recommended amount for a deposit. */ recommendedDepositAmount?: number; /** * The target amount for a deposit made towards a savings goal. */ targetAmount?: number; }