/* 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. */ // May contain unused imports in some cases // @ts-ignore import type { DepositAccountInterestRateSettings } from './deposit-account-interest-rate-settings'; /** * Interest Availability of a Deposit Account */ export interface InterestAccountSettingsAvailabilityResponse { /** * The encoded key of the Interest Availability, auto generated, unique. */ encodedKey?: string; interestRateSettings?: DepositAccountInterestRateSettings; /** * Start date of the Interest Availability. */ startDate?: string; /** * Type of the interest. */ type?: InterestAccountSettingsAvailabilityResponseTypeEnum; } export const InterestAccountSettingsAvailabilityResponseTypeEnum = { Interest: 'INTEREST', Overdraft: 'OVERDRAFT', TechnicalOverdraft: 'TECHNICAL_OVERDRAFT', } as const; export type InterestAccountSettingsAvailabilityResponseTypeEnum = (typeof InterestAccountSettingsAvailabilityResponseTypeEnum)[keyof typeof InterestAccountSettingsAvailabilityResponseTypeEnum];