from schemas.base import CustomModel class AuthLoginRequest(CustomModel): auth_date: int first_name: str hash: str id: int photo_url: str class AuthLoginResponse(CustomModel): access_token: str