Interface OpenidAuthorizeStartEvent
interface OpenidAuthorizeStartEvent { category: "openid"; data: { client_id: undefined | string; code_challenge: undefined | string; code_challenge_method: undefined | string; redirect_uri: undefined | string; response_type: undefined | string; scope: undefined | string; state: undefined | string; }; id: string; requestId: string; tenantId: string; timestamp: number; type: string; version: "1"; } interface OpenidAuthorizeStartEventSanitised { category: "openid"; data: { client_id: undefined | string; code_challenge: undefined | string; code_challenge_method: undefined | string; redirect_uri: undefined | string; response_type: undefined | string; scope: undefined | string; state: undefined | string; }; id: string; requestId: string; tenantId: string; timestamp: number; type: string; version: "1"; } Properties
category
category: "openid"
Sanitisation Level DATA
data
data: {
client_id: undefined | string;
code_challenge: undefined | string;
code_challenge_method: undefined | string;
redirect_uri: undefined | string;
response_type: undefined | string;
scope: undefined | string;
state: undefined | string;
}
Type declaration
client_id: undefined | string
code_challenge: undefined | string
code_challenge_method: undefined | string
redirect_uri: undefined | string
response_type: undefined | string
scope: undefined | string
state: undefined | string
requestId
requestId: string
timestamp
timestamp: number