interface CredentialPresentationSessionResponseProcessSuccessEventSanitised {
    category: "credential-presentation";
    clientId: undefined | string;
    data: {
        applicationId: string;
        applicationType: string;
        credentialErrors: undefined;
        credentialQuery: undefined;
        credentials: undefined;
        error: undefined | {
            message: string;
            type: string;
        };
        sessionId: string;
        sessionType: string;
    };
    id: string;
    managementUserId: undefined | string;
    requestId: string;
    tenantId: string;
    timestamp: number;
    type: string;
    version: "1";
}

Properties

category: "credential-presentation"
clientId: undefined | string
data: {
    applicationId: string;
    applicationType: string;
    credentialErrors: undefined;
    credentialQuery: undefined;
    credentials: undefined;
    error: undefined | {
        message: string;
        type: string;
    };
    sessionId: string;
    sessionType: string;
}

Type declaration

  • applicationId: string
  • applicationType: string
  • credentialErrors: undefined
  • credentialQuery: undefined
  • credentials: undefined
  • error: undefined | {
        message: string;
        type: string;
    }
  • sessionId: string
  • sessionType: string
id: string
managementUserId: undefined | string
requestId: string
tenantId: string
timestamp: number
type: string
version: "1"