Interface CredentialCompactSignSuccessEvent
interface CredentialCompactSignSuccessEvent { category: "credential-compact"; data: { decoded: { aud: undefined | string; exp: undefined | number; iat: undefined | number; iss: string; jti: string; nbf: undefined | number; status: undefined | { index: number; type: undefined | "BitIndexRevocationList"; url: string; }; sub: undefined | string; type: undefined | string; }; encoded: string; }; id: string; requestId: string; tenantId: string; timestamp: number; type: string; version: "1"; } interface CredentialCompactSignSuccessEventSanitised { category: "credential-compact"; data: { decoded: { exp: undefined | number; jti: string; nbf: undefined | number; status: undefined | { index: number; type: undefined | "BitIndexRevocationList"; url: string; }; type: undefined | string; }; }; id: string; requestId: string; tenantId: string; timestamp: number; type: string; version: "1"; } Properties
category
category: "credential-compact"
Sanitisation Level DATA
data
data: {
decoded: {
aud: undefined | string;
exp: undefined | number;
iat: undefined | number;
iss: string;
jti: string;
nbf: undefined | number;
status: undefined | {
index: number;
type: undefined | "BitIndexRevocationList";
url: string;
};
sub: undefined | string;
type: undefined | string;
};
encoded: string;
}
Type declaration
decoded: {
aud: undefined | string;
exp: undefined | number;
iat: undefined | number;
iss: string;
jti: string;
nbf: undefined | number;
status: undefined | {
index: number;
type: undefined | "BitIndexRevocationList";
url: string;
};
sub: undefined | string;
type: undefined | string;
}
aud: undefined | string
exp: undefined | number
iat: undefined | number
iss: string
jti: string
nbf: undefined | number
status: undefined | {
index: number;
type: undefined | "BitIndexRevocationList";
url: string;
}
sub: undefined | string
type: undefined | string
encoded: string
requestId
requestId: string
timestamp
timestamp: number