/* 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 PMT Adjustment threshold settings for loan accounts and loan products. */ export interface PMTAdjustmentThreshold { /** * Represents the method used to calculate the PMT adjustment threshold. Supported value is CALENDAR_DAYS */ method?: PMTAdjustmentThresholdMethodEnum; /** * The number of days that trigger a PMT Adjustment. */ numberOfDays?: number; } export const PMTAdjustmentThresholdMethodEnum = { WorkingDays: 'WORKING_DAYS', CalendarDays: 'CALENDAR_DAYS', } as const; export type PMTAdjustmentThresholdMethodEnum = (typeof PMTAdjustmentThresholdMethodEnum)[keyof typeof PMTAdjustmentThresholdMethodEnum];