Interface MobileCredentialIacaUpdateSuccessEvent
interface MobileCredentialIacaUpdateSuccessEvent { category: "mobile-credential"; data: { active: boolean; certificateData: undefined | { active: undefined | boolean; commonName: string; country: string; notAfter: string; notBefore: string; }; certificateFingerprint: undefined | string; certificatePem: undefined | string; id: string; publicKeyJwk: { crv: undefined | string; e: undefined | string; kid: undefined | string; kty: "OKP" | "EC" | "RSA"; n: undefined | string; x: undefined | string; y: undefined | string; }; }; id: string; requestId: string; tenantId: string; timestamp: number; type: string; version: "1"; } interface MobileCredentialIacaUpdateSuccessEventSanitised { category: "mobile-credential"; data: { active: boolean; certificateData: undefined | { active: undefined | boolean; commonName: string; country: string; notAfter: string; notBefore: string; }; certificateFingerprint: undefined | string; certificatePem: undefined | string; id: string; publicKeyJwk: { crv: undefined | string; e: undefined | string; kid: undefined | string; kty: "OKP" | "EC" | "RSA"; n: undefined | string; x: undefined | string; y: undefined | string; }; }; id: string; requestId: string; tenantId: string; timestamp: number; type: string; version: "1"; } Properties
category
category: "mobile-credential"
Sanitisation Level DATA
data
data: {
active: boolean;
certificateData: undefined | {
active: undefined | boolean;
commonName: string;
country: string;
notAfter: string;
notBefore: string;
};
certificateFingerprint: undefined | string;
certificatePem: undefined | string;
id: string;
publicKeyJwk: {
crv: undefined | string;
e: undefined | string;
kid: undefined | string;
kty: "OKP" | "EC" | "RSA";
n: undefined | string;
x: undefined | string;
y: undefined | string;
};
}
Type declaration
active: boolean
certificateData: undefined | {
active: undefined | boolean;
commonName: string;
country: string;
notAfter: string;
notBefore: string;
}
certificateFingerprint: undefined | string
certificatePem: undefined | string
id: string
publicKeyJwk: {
crv: undefined | string;
e: undefined | string;
kid: undefined | string;
kty: "OKP" | "EC" | "RSA";
n: undefined | string;
x: undefined | string;
y: undefined | string;
}
crv: undefined | string
e: undefined | string
kid: undefined | string
kty: "OKP" | "EC" | "RSA"
n: undefined | string
x: undefined | string
y: undefined | string
requestId
requestId: string
timestamp
timestamp: number