Interface OpenidAuthenticationProviderAuthorizeSuccessEvent
interface OpenidAuthenticationProviderAuthorizeSuccessEvent { category: "openid"; data: { authenticationProvider: { claims: undefined | { [
key:
string]
: unknown; }; id: undefined | string; subjectId: undefined | string; }; existingUser: undefined | boolean; interactionId: string; sessionId: undefined | string; userId: undefined | string; }; id: string; requestId: string; tenantId: string; timestamp: number; type: string; version: "1"; } interface OpenidAuthenticationProviderAuthorizeSuccessEventSanitised { category: "openid"; data: { authenticationProvider: { claims: undefined; id: undefined | string; subjectId: undefined; }; existingUser: undefined | boolean; interactionId: string; sessionId: undefined | string; userId: undefined | string; }; id: string; requestId: string; tenantId: string; timestamp: number; type: string; version: "1"; } Properties
category
category: "openid"
Sanitisation Level DATA
data
data: {
authenticationProvider: {
claims: undefined | {
[key: string]: unknown;
};
id: undefined | string;
subjectId: undefined | string;
};
existingUser: undefined | boolean;
interactionId: string;
sessionId: undefined | string;
userId: undefined | string;
}
Type declaration
authenticationProvider: {
claims: undefined | {
[key: string]: unknown;
};
id: undefined | string;
subjectId: undefined | string;
}
Sanitisation Level PII
claims: undefined | {
[key: string]: unknown;
}
id: undefined | string
Sanitisation Level PII
subjectId: undefined | string
existingUser: undefined | boolean
interactionId: string
sessionId: undefined | string
userId: undefined | string
requestId
requestId: string
timestamp
timestamp: number