from typing import ClassVar, List from common import ApiModel class Person(ApiModel): KEYS: ClassVar[List[str]] = ["id", "name"] id: int = -1 name: str