@sudoplatform/sudo-user
    Preparing search index...

    Interface AuthenticationTokens

    Encapsulates the authentication tokens obtained from a successful authentication.

    ID token containing the user's identity attributes.

    access token required for authorizing API access.

    refresh token used for refreshing ID and access tokens.

    expiry of ID and access tokens in milliseconds.

    interface AuthenticationTokens {
        accessToken: string;
        idToken: string;
        refreshToken: string;
        tokenExpiry: number;
    }
    Index

    Properties

    accessToken: string
    idToken: string
    refreshToken: string
    tokenExpiry: number