interface Invitation {
    acceptedAt: Date;
    email: string;
    fromUserId: string;
    invitedAt: Date;
    orgId?: null | string;
    role?: null | "admin" | "owner" | "guest" | "member";
    status: string;
}

Implemented by

Properties

acceptedAt: Date
email: string
fromUserId: string
invitedAt: Date
orgId?: null | string
role?: null | "admin" | "owner" | "guest" | "member"
status: string

Generated using TypeDoc