zibri
Preparing search index...
auth/jwt/jwt-access-token-payload.model
JwtAccessTokenPayload
Type Alias JwtAccessTokenPayload<Role, T>
The payload of a jwt access token.
type
JwtAccessTokenPayload
<
Role
extends
string
,
T
extends
BaseUser
<
Role
>
>
=
{
email
:
T
[
"email"
]
;
id
:
T
[
"id"
]
;
roles
:
T
[
"roles"
]
;
}
Type Parameters
Role
extends
string
T
extends
BaseUser
<
Role
>
Index
Properties
email
id
roles
Properties
email
email
:
T
[
"email"
]
The email of the user.
id
id
:
T
[
"id"
]
The id of the user.
roles
roles
:
T
[
"roles"
]
The roles of the user.
Settings
Member Visibility
Inherited
External
Theme
OS
Light
Dark
On This Page
Properties
email
id
roles
zibri
Loading...
The payload of a jwt access token.