Typical JWT token parsed structure from DRF API.

interface AuthToken {
    exp: number;
    jti: string;
    token_type: string;
    user_id: number;
}

Properties

exp: number
jti: string
token_type: string
user_id: number