The Store object
class Store:
id: str
name: str
data: JSON
created: str
JSON
is a type alias for Union[Dict[str, "JSON"], List["JSON"], str, int, float, bool, None]
.
class Store:
id: str
name: str
data: JSON
created: str
JSON
is a type alias for Union[Dict[str, "JSON"], List["JSON"], str, int, float, bool, None]
.