from typing import Generic, TypeVar from pydantic import BaseModel T = TypeVar('T') class ReturnValue(BaseModel, Generic[T]): status: int data: T