export interface ICustomerCreditLimit {
    amountUsed: number;
    currentBalance: number;
    creditLimit: number;
    companyId: string;
    containerId: string;
}
