Interface InitSessionOptions

Options for loading an existing session.

interface InitSessionOptions {
    configId?: string;
    local?: boolean;
    sessionId?: string;
}

Properties

configId?: string

The id for the specific snapshot of the configuration to load. Must be used with token. If not provided, will load last saved.

local?: boolean

Loads the most recent local session that has been saved. Will use session id and id instead, if provided.

sessionId?: string

The session id to use for loading the configuration.

Generated using TypeDoc