import { IAgreementPayer } from "./agreement-payer.interface" import { IFinancialScheduler } from "./financial-scheduler.interface" export interface IFinancialOption { productComponentKey: string productComponentPath: string typeCode: string collectionMethodCode: string externalIdentifier: string workDependencyTypeCode: string referencePeriodEndDate: string referencePeriodStartDate: string collectionMandateKey: string collectionAgreementKey: string agreementPayer : IAgreementPayer financialSchedulerList : IFinancialScheduler[] }