Interface MobileCredentialIacaCreateStartEvent

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

Properties

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

Type declaration

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