GetWorkspaceUsersResponse
type GetWorkspaceUsersResponse = {
hasMore: boolean;
nextCursor?: string;
workspaceUsers: WorkspaceUser[];
};
Paginated response for workspace users.
Properties
hasMore
hasMore: boolean;
Whether there are more users available.
nextCursor?
optional nextCursor: string;
Cursor for the next page of results.
workspaceUsers
workspaceUsers: WorkspaceUser[];
Array of workspace users.