interface OrgUser {
    id: string;
    orgId: string;
    userId: string;
    role: OrgUserRole;
    status: OrgUserStatus;
    workspaces: string[];
    user: PlatformUser;
}

Properties

id: string
orgId: string
userId: string
workspaces: string[]