Interface OpenidTokenSuccessEvent
interface OpenidTokenSuccessEvent { category: "openid"; data: { access_token: string; expires_in: number; scope: undefined | string; sessionId: undefined | string; token_type: string; userId: string; }; id: string; requestId: string; tenantId: string; timestamp: number; type: string; version: "1"; } interface OpenidTokenSuccessEventSanitised { category: "openid"; data: { access_token: undefined; expires_in: number; scope: undefined | string; sessionId: undefined | string; token_type: string; userId: string; }; id: string; requestId: string; tenantId: string; timestamp: number; type: string; version: "1"; } Properties
category
category: "openid"
Sanitisation Level DATA
data
data: {
access_token: string;
expires_in: number;
scope: undefined | string;
sessionId: undefined | string;
token_type: string;
userId: string;
}
Type declaration
Sanitisation Level PII
access_token: string
expires_in: number
scope: undefined | string
sessionId: undefined | string
token_type: string
userId: string
requestId
requestId: string
timestamp
timestamp: number