/** * FondoGarantia Entity * Fondo de garantia acumulado por contrato * * @module Estimates * @table estimates.fondo_garantia * @ddl schemas/04-estimates-schema-ddl.sql */ import { Tenant } from '../../core/entities/tenant.entity'; import { User } from '../../core/entities/user.entity'; export declare class FondoGarantia { id: string; tenantId: string; contratoId: string; accumulatedAmount: number; releasedAmount: number; pendingAmount: number; releaseDate: Date | null; releasedAt: Date | null; releasedById: string | null; createdAt: Date; createdById: string | null; updatedAt: Date | null; updatedById: string | null; deletedAt: Date | null; deletedById: string | null; tenant: Tenant; releasedBy: User | null; createdBy: User | null; } //# sourceMappingURL=fondo-garantia.entity.d.ts.map