/* 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 change due dates settings action */ export interface ChangeDueDatesSettingsInput { /** * The date when to change the due dates settings - deprecated, use valueDate instead */ entryDate?: string; /** * The new fixed days of month to be used on the account */ fixedDaysOfMonth: Array; /** * The notes for the change due dates settings action performed on the loan account */ notes?: string; /** * The date when to change the due dates settings */ valueDate?: string; }