interface JWT {
    audienceId: string;
    createdAt?: Date;
    expiresAt?: Date;
    ip: string;
    issuerId: string;
    jti: string;
    updatedAt?: Date;
    userAgent: string;
}

Properties

audienceId: string

ID of the user targeted by the JWT.

createdAt?: Date

Creation date of the JWT.

expiresAt?: Date

Expiration date of the JWT.

ip: string

IP address used during the creation of the JWT.

issuerId: string

ID of the user who issued the JWT.

jti: string

JWT ID.

updatedAt?: Date

Last update date of the JWT.

userAgent: string

User-agent used during the creation of the JWT.