import { BaseModel } from './baseModel'; import { Customer } from './customer'; export interface CustomerConfiguration extends BaseModel { customer: Customer | string; softOutstandingAmount?: number; hardOutstandingAmount?: number; creditLimit?: number; minOrderLimit?: number; maxOrderLimit?: number; invoiceLimit?: number; creditDays?: number; }