@twilio/flex-sdk
    Preparing search index...

    Interface RefreshTokenResponse

    Contains the access and refresh tokens after successful authentication.

    interface RefreshTokenResponse {
        accessToken: string;
        refreshToken: string;
        tokenInfo?: object;
    }
    Index

    Properties

    accessToken: string

    Flex JWE token.

    refreshToken: string

    Used to extend user session without needing re-authentication.

    tokenInfo?: object