Interface MobileCredentialIacaRetrieveSuccessEvent
interface MobileCredentialIacaRetrieveSuccessEvent { category: "mobile-credential"; data: { active: undefined | boolean; certificateData: undefined | { active: undefined | boolean; commonName: string; country: string; notAfter: string; notBefore: string; }; certificateFingerprint: string; certificatePem: 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 MobileCredentialIacaRetrieveSuccessEventSanitised { category: "mobile-credential"; data: { active: undefined | boolean; certificateData: undefined | { active: undefined | boolean; commonName: string; country: string; notAfter: string; notBefore: string; }; certificateFingerprint: string; certificatePem: 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: undefined | boolean;
certificateData: undefined | {
active: undefined | boolean;
commonName: string;
country: string;
notAfter: string;
notBefore: string;
};
certificateFingerprint: string;
certificatePem: 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: undefined | boolean
certificateData: undefined | {
active: undefined | boolean;
commonName: string;
country: string;
notAfter: string;
notBefore: string;
}
certificateFingerprint: string
certificatePem: 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