Interface OpenidTokenSuccessEvent

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: "openid"
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
id: string
requestId: string
tenantId: string
timestamp: number
type: string
version: "1"