Interface CredentialCompactVerifyStartEvent

interface CredentialCompactVerifyStartEventSanitised {
    category: "credential-compact";
    data: {
        assertValidFrom: boolean;
        assertValidUntil: boolean;
        checkRevocation: boolean;
        payload: undefined;
        trustedIssuers: undefined | string[];
    };
    id: string;
    requestId: string;
    tenantId: string;
    timestamp: number;
    type: string;
    version: "1";
}

Properties

category: "credential-compact"
data: {
    assertValidFrom: boolean;
    assertValidUntil: boolean;
    checkRevocation: boolean;
    payload: undefined | string;
    trustedIssuers: undefined | string[];
}

Type declaration

  • assertValidFrom: boolean
  • assertValidUntil: boolean
  • checkRevocation: boolean
  • Sanitisation Level PII payload: undefined | string
  • trustedIssuers: undefined | string[]
id: string
requestId: string
tenantId: string
timestamp: number
type: string
version: "1"