Interface MobileCredentialIacaRetrieveSuccessEvent

interface MobileCredentialIacaRetrieveSuccessEventSanitised {
    category: "mobile-credential";
    data: {
        active: boolean;
        certificateData: undefined | {
            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: "mobile-credential"
data: {
    active: boolean;
    certificateData: undefined | {
        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: boolean
  • certificateData: undefined | {
        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
id: string
requestId: string
tenantId: string
timestamp: number
type: string
version: "1"