/* tslint:disable */ /* eslint-disable */ /** * depositproducts * 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 overdraft settings of the deposit product */ export interface DepositProductOverdraftSettings { /** * Whether the accounts for this product may have overdraft */ allowOverdraft?: boolean; /** * Whether the accounts for this product may have technical overdraft */ allowTechnicalOverdraft?: boolean; /** * How much money may be taken out for the account to go negative */ maxOverdraftLimit?: number; }