Mobile Locker JavaScript SDK
    Preparing search index...

    Interface StorageEntry

    interface StorageEntry {
        createdAt: string;
        data: unknown;
        name: string;
        presentationID: number;
        teamID: number;
        updatedAt: string;
        userID: number;
    }
    Index

    Properties

    createdAt: string

    ISO 8601 timestamp of when the entry was first created.

    data: unknown

    The stored value. Can be any JSON-serializable type.

    name: string

    The key name used to store and retrieve this entry.

    presentationID: number
    teamID: number
    updatedAt: string

    ISO 8601 timestamp of the most recent update.

    userID: number