MCPcopy Create free account
hub / github.com/dbunt1tled/python-fast-api / LoginRequest

Class LoginRequest

src/app/auth/dto/login.py:6–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4
5
6class LoginRequest(DTO):
7 email: str = Field(
8 ...,
9 min_length=3,
10 max_length=255,
11 description="The email of the user",
12 examples=["p8t2H@example.com", "Ww5rP@example.com"],
13 )
14 password: str = Field(
15 ...,
16 min_length=3,
17 max_length=255,
18 description="The password of the user",
19 examples=["password", "password123"],
20 )

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected