@dolbyio/dolbyio-rest-apis-client - v5.1.1
    Preparing search index...

    Interface JwtToken

    Represents a JWT token used for authentication.

    interface JwtToken {
        access_token: string;
        expires_in: number;
        scope?: string;
        token_type: string;
    }
    Index

    Properties

    access_token: string

    The access token to use to authenticate requests.

    expires_in: number

    Expiration of the access token.

    scope?: string

    Authorization scope for the access token.

    token_type: string

    The type of access token. Always Bearer.