The token signature object.

interface TokenSignature {
    authId: string;
    current: string;
    originToken: LemonOAuthToken;
    signature: string;
}

Properties

authId: string

The authentication ID.

current: string

The current token.

originToken: LemonOAuthToken

The original token.

signature: string

The signature of the token.