/* 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. */ /** * The carry forward options that indicates which fields will be carried forward to new account on the loan account reschedule/refinance */ export interface CarryForwardOptions { 'Choose whether to capitalise Principal In Arrears from the initial account'?: boolean; 'Choose whether to capitalise accruedInterestBalance from the initial account'?: boolean; 'Choose whether to capitalise accruedInterestFromArrearsBalance from the initial account'?: boolean; 'Choose whether to capitalise interestBalance from the initial account'?: boolean; 'Choose whether to capitalise interestFromArrearsBalance from the initial account'?: boolean; 'Choose whether to carry forward Principal In Arrears from the initial account'?: boolean; 'Choose whether to carry forward accruedInterestBalance from the initial account'?: boolean; 'Choose whether to carry forward accruedInterestFromArrearsBalance from the initial account'?: boolean; 'Choose whether to carry forward accruedInterestFromArrearsBalance from the originating account'?: boolean; 'Choose whether to carry forward interestBalance from the initial account'?: boolean; 'Choose whether to carry forward interestBalance from the originating account'?: boolean; 'Choose whether to carry forward interestFromArrearsBalance from the initial account'?: boolean; 'Choose whether to carry forward interestFromArrearsBalance from the originating account'?: boolean; 'Choose whether to carry forward loanAccountState from the originating account'?: boolean; 'Choose whether to carry forward the interest on interest-bearing fees balance from the initial account'?: boolean; 'Choose whether to carry forward the interest-bearing fees balance from the initial account'?: boolean; 'Choose whether to carry forward the non-scheduled fee balance from the initial account'?: boolean; 'Choose whether to carry forward the redraw balance from the originating account'?: boolean; 'Choose whether to carry forward the schedule allocated fee balance from the initial account'?: boolean; 'Choose whether to maintain PMT for the first installment'?: boolean; 'Choose whether to write off Principal In Arrears from the initial account'?: boolean; 'Choose whether to write off accruedInterestBalance from the initial account'?: boolean; 'Choose whether to write off accruedInterestFromArrearsBalance from the initial account'?: boolean; 'Choose whether to write off interestBalance from the initial account'?: boolean; 'Choose whether to write off interestFromArrearsBalance from the initial account'?: boolean; /** * Choose whether to carry forward accruedInterestBalance from the originating account */ accruedInterestBalance?: boolean; }