Interface CredentialPresentationSessionResultExchangeSuccessEventSanitised

interface CredentialPresentationSessionResultExchangeSuccessEventSanitised {
    category: "credential-presentation";
    data: {
        error: undefined | {
            message: string;
            type: string;
        };
        sessionId: string;
    };
    id: string;
    requestId: string;
    tenantId: string;
    timestamp: number;
    type: string;
    version: "1";
}

Properties

category: "credential-presentation"
data: {
    error: undefined | {
        message: string;
        type: string;
    };
    sessionId: string;
}

Type declaration

  • error: undefined | {
        message: string;
        type: string;
    }
  • sessionId: string
id: string
requestId: string
tenantId: string
timestamp: number
type: string
version: "1"