mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
10 lines (9 loc) • 346 B
TypeScript
import { ICustomerCreditLimit } from '../interfaces/i-customer-credit-limit';
export declare class CustomerCreditLimitEntity implements ICustomerCreditLimit {
amountUsed: number;
currentBalance: number;
creditLimit: number;
companyId: string;
containerId: string;
constructor(data?: Partial<CustomerCreditLimitEntity>);
}