@archastro/sdk
    Preparing search index...

    Interface KeyValueStorageEntry

    A single key-value storage entry belonging to a user. Represents one key/value pair written to a user's isolated storage namespace within an app.

    interface KeyValueStorageEntry {
        created_at?: string;
        key: string;
        updated_at?: string;
        user: string;
        value: string;
    }
    Index

    Properties

    created_at?: string

    When this storage entry was first created (ISO 8601). null if not yet persisted.

    key: string

    The string key used to store and look up this entry.

    updated_at?: string

    When this storage entry was last updated (ISO 8601). null if not yet persisted.

    user: string

    ID of the user who owns this storage entry (usr_...).

    value: string

    The string value stored under key for this user.