The Store Object

The Store Object

class Store:
    id: str
    name: str
    data: JSON
    created: str
  • Attributes:

    • 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, and None.

Last updated