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