WorkspaceUser
type WorkspaceUser = {
fullName: string;
imageId: string | null;
isDeleted: boolean;
role: "ADMIN" | "MEMBER" | "GUEST";
timezone: string;
userEmail: string;
userId: string;
workspaceId: string;
};
Represents a user within a workspace (MemberView from API).
Type Declaration
| Name | Type | Default value |
|---|---|---|
fullName | string | - |
imageId | string | null | - |
isDeleted | boolean | - |
role | "ADMIN" | "MEMBER" | "GUEST" | WorkspaceRoleSchema |
timezone | string | - |
userEmail | string | - |
userId | string | - |
workspaceId | string | - |