Interface WalletAppAssociationGetSuccessEvent
interface WalletAppAssociationGetSuccessEvent { category: "wallet"; data: { android: undefined | { packageName: string; sha256CertFingerprints: string[]; }; authorizeUrl: string; clients: undefined | { domain: string; }[]; ios: undefined | { bundleId: string; teamId: string; }; }; id: string; requestId: string; tenantId: string; timestamp: number; type: string; version: "1"; } interface WalletAppAssociationGetSuccessEventSanitised { category: "wallet"; data: { android: undefined | { packageName: string; sha256CertFingerprints: string[]; }; authorizeUrl: 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
category: "wallet"
Sanitisation Level DATA
data
data: {
android: undefined | {
packageName: string;
sha256CertFingerprints: string[];
};
authorizeUrl: string;
clients: undefined | {
domain: string;
}[];
ios: undefined | {
bundleId: string;
teamId: string;
};
}
Type declaration
android: undefined | {
packageName: string;
sha256CertFingerprints: string[];
}
authorizeUrl: string
clients: undefined | {
domain: string;
}[]
ios: undefined | {
bundleId: string;
teamId: string;
}
requestId
requestId: string
timestamp
timestamp: number