> ## Documentation Index
> Fetch the complete documentation index at: https://docs.encord.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Utilities.project user

## ProjectUserRole Objects

```python theme={"dark"}
class ProjectUserRole(IntEnum)
```

Enumeration for user roles within a project.

**Attributes**:

* `ADMIN` *int* - Represents an admin user with value 0.
* `ANNOTATOR` *int* - Represents an annotator user with value 1.
* `REVIEWER` *int* - Represents a reviewer user with value 2.
* `ANNOTATOR_REVIEWER` *int* - Represents a user who is both an annotator and a reviewer with value 3.
* `TEAM_MANAGER` *int* - Represents a team manager user with value 4.

## ProjectUser Objects

```python theme={"dark"}
class ProjectUser(BaseDTO)
```

Data transfer object representing a user within a project.

**Attributes**:

* `user_email` *str* - The email address of the user.
* `user_role` *ProjectUserRole* - The role of the user in the project, defined by the ProjectUserRole enumeration.
* `project_hash` *str* - A unique identifier for the project.
