Interface CredentialWebSemanticCreateSuccessEventSanitised

interface CredentialWebSemanticCreateSuccessEventSanitised {
    category: "credential-web-semantic";
    data: {
        credential: undefined;
        credentialSize: number;
        credentialStatus: undefined | {
            id: string;
            type: string;
        };
        hasCredentialSubjectId: boolean;
        id: string;
        issuanceDate: undefined | string;
        tag: undefined | string;
    };
    id: string;
    requestId: string;
    tenantId: string;
    timestamp: number;
    type: string;
    version: "1";
}

Properties

category: "credential-web-semantic"
data: {
    credential: undefined;
    credentialSize: number;
    credentialStatus: undefined | {
        id: string;
        type: string;
    };
    hasCredentialSubjectId: boolean;
    id: string;
    issuanceDate: undefined | string;
    tag: undefined | string;
}

Type declaration

  • credential: undefined
  • credentialSize: number
  • credentialStatus: undefined | {
        id: string;
        type: string;
    }
  • hasCredentialSubjectId: boolean
  • id: string
  • issuanceDate: undefined | string
  • tag: undefined | string
id: string
requestId: string
tenantId: string
timestamp: number
type: string
version: "1"