interface MobileCredentialIacaCreateStartEventSanitised {
    category: "mobile-credential";
    data: {
        active: undefined | boolean;
        certificatePem: undefined;
        commonName: undefined | string;
        country: undefined;
        notAfter: undefined | string;
        notBefore: undefined | string;
        stateOrProvinceName: undefined | string;
    };
    id: string;
    requestId: string;
    tenantId: string;
    timestamp: number;
    type: string;
    version: "1";
}

Properties

category: "mobile-credential"
data: {
    active: undefined | boolean;
    certificatePem: undefined | string;
    commonName: undefined | string;
    country: undefined | string;
    notAfter: undefined | string;
    notBefore: undefined | string;
    stateOrProvinceName: undefined | string;
}

Type declaration

  • active: undefined | boolean
  • Sanitisation Level PII certificatePem: undefined | string
  • commonName: undefined | string
  • Sanitisation Level PII country: undefined | string
  • notAfter: undefined | string
  • notBefore: undefined | string
  • stateOrProvinceName: undefined | string
id: string
requestId: string
tenantId: string
timestamp: number
type: string
version: "1"