/* tslint:disable */ /* eslint-disable */ /** * configuration/loanrisklevels.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. */ /** * Represents the configuration for a loan risk level. */ export interface LoanRiskLevelConfiguration { /** * The lower level of the band of number of days the account is at risk. */ arrearsFrom: number; /** * The upper level of the band of number of days the account is at risk. */ arrearsTo: number; /** * The user-defined ID, which is globally unique. */ id: string; /** * The name of the loan risk level. */ name: string; /** * The amount to provision at this level (as a percentage). */ provisioningPercent?: number; }