Skip to main content

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

NameType
accountstring
createdAtstring
firstNamestring
idstring
lastNamestring
status"ACTIVE" | "WAITING_KYC" | "KYC_DONE" | "REJECTED" | "DISABLED"
updatedAtstring