from pydantic import BaseModel class Friend(BaseModel): user_id: str friend_user_id: str status: str