Interface WalletAppAssociationUpsertStartEvent

interface WalletAppAssociationUpsertStartEventSanitised {
    category: "wallet";
    data: {
        android: undefined | {
            packageName: string;
            sha256CertFingerprints: string[];
        };
        clients: undefined | {
            domain: string;
        }[];
        ios: undefined | {
            bundleId: string;
            teamId: string;
        };
    };
    id: string;
    requestId: string;
    tenantId: string;
    timestamp: number;
    type: string;
    version: "1";
}

Properties

category: "wallet"
data: {
    android: undefined | {
        packageName: string;
        sha256CertFingerprints: string[];
    };
    clients: undefined | {
        domain: string;
    }[];
    ios: undefined | {
        bundleId: string;
        teamId: string;
    };
}

Type declaration

  • android: undefined | {
        packageName: string;
        sha256CertFingerprints: string[];
    }
  • clients: undefined | {
        domain: string;
    }[]
  • ios: undefined | {
        bundleId: string;
        teamId: string;
    }
id: string
requestId: string
tenantId: string
timestamp: number
type: string
version: "1"