Type Alias: FinanceProject
type FinanceProject = Tables<"finance_project"> & FinanceProjectCalculatedValues & { bank_account: BankAccount; contact: Contact | null; paid_adjustment_groups: { [cashflowId: string]: ProjectAdjustment[]; }; paid_at: string | null; tags: Tag[]; unpaid_adjustments: ProjectAdjustment[];};Defined in: packages/db/src/entities/finance/finance-project/finance-project.types.ts:18
Type Declaration
Section titled “Type Declaration”| Name | Type | Defined in |
|---|---|---|
bank_account | BankAccount | packages/db/src/entities/finance/finance-project/finance-project.types.ts:20 |
contact | Contact | null | packages/db/src/entities/finance/finance-project/finance-project.types.ts:22 |
paid_adjustment_groups | { [cashflowId: string]: ProjectAdjustment[]; } | packages/db/src/entities/finance/finance-project/finance-project.types.ts:25 |
paid_at | string | null | packages/db/src/entities/finance/finance-project/finance-project.types.ts:24 |
tags | Tag[] | packages/db/src/entities/finance/finance-project/finance-project.types.ts:23 |
unpaid_adjustments | ProjectAdjustment[] | packages/db/src/entities/finance/finance-project/finance-project.types.ts:21 |