TypeAlias.InvestIdentity
type InvestIdentity = {
account: string;
createdAt: string;
firstName: string;
id: string;
lastName: string;
status: "ACTIVE" | "WAITING_KYC" | "KYC_DONE" | "REJECTED" | "DISABLED";
updatedAt: string;
};
Investor identity with KYC lifecycle tracking.
Represents an investor's identity linked to an account, progressing through KYC verification stages (WaitingKyc -> KycDone -> Active).
Type Declaration
| Name | Type |
|---|---|
account | string |
createdAt | string |
firstName | string |
id | string |
lastName | string |
status | "ACTIVE" | "WAITING_KYC" | "KYC_DONE" | "REJECTED" | "DISABLED" |
updatedAt | string |