TypeAlias.InvestLockup
type InvestLockup = z.infer<typeof investLockupSchema>;
Custom lockup period for an investor in a specific fund.
Allows the fund manager to set a per-investor lockup end date, overriding the fund-level lockup period.
Example
const lockup: InvestLockup = {
id: "lockup_123",
fund: "fund_456",
identity: { id: "identity_789", firstName: "John", lastName: "Doe" },
endDate: new Date("2026-12-31"),
createdAt: "2026-01-15T00:00:00Z",
updatedAt: "2026-01-15T00:00:00Z"
};