/* tslint:disable */ /* eslint-disable */ /** * configuration/internalcontrols.yaml * 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. */ /** * Configuration for maximum exposure to a client */ export interface LoanExposureConfiguration { /** * Maximum amount */ exposureAmount?: number; /** * Type of maximum exposure to a client */ exposureType: LoanExposureConfigurationExposureTypeEnum; } export const LoanExposureConfigurationExposureTypeEnum = { Unlimited: 'UNLIMITED', SumOfLoans: 'SUM_OF_LOANS', SumOfLoansMinusSavings: 'SUM_OF_LOANS_MINUS_SAVINGS', } as const; export type LoanExposureConfigurationExposureTypeEnum = (typeof LoanExposureConfigurationExposureTypeEnum)[keyof typeof LoanExposureConfigurationExposureTypeEnum];