/* 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 a deposit account\'s overdraft settings. */ export interface DepositAccountOverdraftSettings { /** * `TRUE` if this account supports overdraft, `FALSE` otherwise. */ allowOverdraft?: boolean; /** * The expiration date of an overdraft. */ overdraftExpiryDate?: string; /** * The limit amount that may be taken out as overdraft, where null means 0. */ overdraftLimit?: number; }