WorkspaceInvitation
type WorkspaceInvitation = {
id: string;
inviterId: string;
isExistingUser: boolean;
role: "ADMIN" | "MEMBER" | "GUEST";
userEmail: string;
workspaceId: string;
};
Represents a workspace invitation.
Type Declaration
| Name | Type | Default value |
|---|---|---|
id | string | - |
inviterId | string | - |
isExistingUser | boolean | - |
role | "ADMIN" | "MEMBER" | "GUEST" | WorkspaceRoleSchema |
userEmail | string | - |
workspaceId | string | - |