| 60 | |
| 61 | |
| 62 | class UserListRequest(Paginated): |
| 63 | email: str | None = Field( |
| 64 | None, |
| 65 | min_length=3, |
| 66 | max_length=255, |
| 67 | description="The email of the user", |
| 68 | examples=["p8t2H@example.com", "Ww5rP@example.com"], |
| 69 | ) |
| 70 | |
| 71 | |
| 72 | class UserResponse(ResponseBaseModel): |
nothing calls this directly
no outgoing calls
no test coverage detected