from __future__ import annotations from pydantic import BaseModel class Address(BaseModel): street: str house_number: int | str city: str