UNPKG

skailan-crm

Version:

Servicio de CRM y gestión de ventas para Skailan

17 lines 654 B
export declare class QuoteItem { readonly id: string; organizationId: string; quoteId: string; productId: string; quantity: number; unitPrice: number; totalPrice: number; notes: string | null; createdAt: Date; updatedAt: Date; constructor(id: string, organizationId: string, quoteId: string, productId: string, quantity: number, unitPrice: number, totalPrice: number, notes: string | null, createdAt: Date, updatedAt: Date); updateQuantity(newQuantity: number): void; updateUnitPrice(newUnitPrice: number): void; updateNotes(newNotes: string | null): void; } //# sourceMappingURL=QuoteItem.d.ts.map