Interface MobileCredentialSignSuccessEvent
interface MobileCredentialSignSuccessEvent { category: "mobile-credential"; data: { docType: string; payload: { encoded: string; }; status: undefined | { status_list: { idx: number; uri: string; }; }; validityInfo: { expectedUpdate: undefined | string; validFrom: undefined | string; validUntil: string; }; }; id: string; requestId: string; tenantId: string; timestamp: number; type: string; version: "1"; } interface MobileCredentialSignSuccessEventSanitised { category: "mobile-credential"; data: { docType: string; payload: undefined; status: undefined | { status_list: { idx: undefined; uri: string; }; }; validityInfo: { expectedUpdate: undefined | string; validFrom: undefined | string; validUntil: string; }; }; id: string; requestId: string; tenantId: string; timestamp: number; type: string; version: "1"; } Properties
category
category: "mobile-credential"
Sanitisation Level DATA
data
data: {
docType: string;
payload: {
encoded: string;
};
status: undefined | {
status_list: {
idx: number;
uri: string;
};
};
validityInfo: {
expectedUpdate: undefined | string;
validFrom: undefined | string;
validUntil: string;
};
}
Type declaration
docType: string
Sanitisation Level PII
payload: {
encoded: string;
}
status: undefined | {
status_list: {
idx: number;
uri: string;
};
}
validityInfo: {
expectedUpdate: undefined | string;
validFrom: undefined | string;
validUntil: string;
}
expectedUpdate: undefined | string
validFrom: undefined | string
validUntil: string
requestId
requestId: string
timestamp
timestamp: number