import { BaseModel } from './baseModel'; export interface EInvoiceEwbConfiguration extends BaseModel { sourceType: string; destinationType: string; transitType: string; isSourceGstExists: boolean; isDestinationGstExists: boolean; invoiceMaxLimit?: number; invoiceMinLimit?: number; activeFromDate: Date; activeToDate?: Date; isEInvoiceRequired: boolean; isEwayBillRequired: boolean; }