scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
11 lines (10 loc) • 421 B
TypeScript
import { ECustomerCreditLimitType } from '../enums/type.enum';
import { ICustomerCreditLimit } from '../interfaces/i-customer-credit-limit';
export declare class CustomerCreditLimitEntity implements ICustomerCreditLimit {
amountUsed: number;
currentBalance: number;
creditLimit: number;
customerId: string;
type: ECustomerCreditLimitType;
constructor(data?: Partial<CustomerCreditLimitEntity>);
}