JwtPayload
JWT payload.
interface JwtPayload {
channel_id: number;
customer_id: string;
iat: number;
iss: string;
jti: string;
operation: string;
redirect_to?: string;
store_hash: string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
channel_id | Required | number | Channel ID. |
customer_id | Required | string | Customer ID. |
iat | Required | number | Issued at. |
iss | Required | string | Issuer. |
jti | Required | string | JWT ID. |
operation | Required | string | Operation. |
redirect_to | Optional | string | An url to redirect to after login. |
store_hash | Required | string | Store hash. |