Parameters for tracing session operations

interface TraceSessionParams {
    operation:
        | "get"
        | "update"
        | "delete"
        | "create";
    sessionId: string;
    userId?: string;
    found?: boolean;
}

Properties

operation:
    | "get"
    | "update"
    | "delete"
    | "create"
sessionId: string
userId?: string
found?: boolean