VincentJWTAppSpecific type JWTs are used to signal authorization from a user to use a specific app / appVersion

interface VincentJWTAppSpecific {
    data: string;
    header: JWTHeader;
    payload: VincentJWTAppSpecificPayload;
    signature: string;
}

Hierarchy (View Summary)

Properties

data: string
header: JWTHeader
payload: VincentJWTAppSpecificPayload

The payload of the JWT

signature: string