/* tslint:disable */ /* eslint-disable */ /** * loans * 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 request payload for performing an arrears settings change action */ export interface ChangeArrearsSettingsInput { /** * The new arrears tolerance period to be available on the account */ arrearsTolerancePeriod: number; /** * The date when to change the arrears settings */ entryDate: string; /** * The notes for the change arrears settings action performed on the loan account */ notes?: string; }