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