Praman — AI-First SAP UI5 Test Automation Platform - v1.0.1
    Preparing search index...

    Interface SessionInfo

    Information about the current authentication session.

    Tracks when authentication was performed and whether the session is still considered valid based on timeout configuration.

    const session: SessionInfo = {
    authenticatedAt: Date.now(),
    strategyName: 'onprem',
    isValid: true,
    };
    interface SessionInfo {
        authenticatedAt: number;
        isValid: boolean;
        strategyName: string;
    }
    Index

    Properties

    authenticatedAt: number

    When authentication was performed.

    isValid: boolean

    Whether session is still valid (based on timeout).

    strategyName: string

    Auth strategy used.