class Store: id: str name: str data: JSON created: str
Attributes:
id: Unique identifier for the store.
id
name: Name of the store.
name
data: The stored key-value data.
data
created: Timestamp when the store was created.
created
JSON: A type alias for structured data, supporting dict, list, str, int, float, bool, and None.
dict
list
str
int
float
bool
None
Last updated 1 year ago