SAP Cloud SDK for JavaScript - v4.8.0
    Preparing search index...

    Result of an IAS token request via getIasToken. Contains the access token expiration information, and an optional refresh token (available for JWT bearer flows).

    interface IasTokenResult {
        expiresIn: number;
        refreshToken?: string;
        token: string;
    }
    Index
    expiresIn: number

    The number of seconds until the access token expires, as returned by the token endpoint.

    refreshToken?: string

    The refresh token, if returned by the token endpoint. Only sometimes available for JWT bearer (OAuth2JWTBearer) flows. Fetching refresh tokens is disabled in most cases by the SAP Cloud SDK.

    token: string

    The IAS access token as a string.