/* 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 a repayment value change action */ export interface ChangeRepaymentValueLoanAccountInput { /** * Fixed amount for being used for the repayments principal due */ amount?: number; /** * Notes for the repayment value change action performed on the loan account */ notes?: string; /** * Percentage of principal amount used for the repayments principal due */ percentage?: number; /** * Date when to change the repayment value (as Organization Time) */ valueDate: string; }