TESSA Web API
    Preparing search index...

    Interface IOpenSessionResult

    Result to the opening of the session. Contains information on session token and two-factor authentication.

    interface IOpenSessionResult {
        response2fa: null | TwoFactorAuthResponse;
        token: null | { accessToken: string; sessionToken: ISessionToken };
    }
    Index

    Properties

    Properties

    response2fa: null | TwoFactorAuthResponse

    Response for 2FA request processing or null if 2FA was not performed.

    token: null | { accessToken: string; sessionToken: ISessionToken }

    Token containing session information, or null if there is no token.

    Type Declaration

    • null
    • { accessToken: string; sessionToken: ISessionToken }
      • ReadonlyaccessToken: string

        Serialized session token.

      • ReadonlysessionToken: ISessionToken

        Session token.