from typing import TypedDict class Msg(TypedDict): message: str tag: str class JsonResponBase(TypedDict): status: int class JsonResponMsg(JsonResponBase): body: Msg