The HTTP Basic credentials given as the result of using `HTTPBasic` in a dependency. Read more about it in the [FastAPI docs for HTTP Basic Auth](https://fastapi.tiangolo.com/advanced/security/http-basic-auth/).
| 14 | |
| 15 | |
| 16 | class HTTPBasicCredentials(BaseModel): |
| 17 | """ |
| 18 | The HTTP Basic credentials given as the result of using `HTTPBasic` in a |
| 19 | dependency. |
| 20 | |
| 21 | Read more about it in the |
| 22 | [FastAPI docs for HTTP Basic Auth](https://fastapi.tiangolo.com/advanced/security/http-basic-auth/). |
| 23 | """ |
| 24 | |
| 25 | username: Annotated[str, Doc("The HTTP Basic username.")] |
| 26 | password: Annotated[str, Doc("The HTTP Basic password.")] |
| 27 | |
| 28 | |
| 29 | class HTTPAuthorizationCredentials(BaseModel): |
no outgoing calls
no test coverage detected
searching dependent graphs…