Interface EcosystemSyncAllSuccessEvent
interface EcosystemSyncAllSuccessEvent { category: "ecosystem"; data: { ecosystems: { ecosystemUrl: string; tenantIds: string[]; }[]; integrations: { format: "MATTR"; url: string; }[]; lastSyncTime: number; skipped: boolean; successCount: number; }; id: string; requestId: string; tenantId: string; timestamp: number; type: string; version: "1"; } interface EcosystemSyncAllSuccessEventSanitised { category: "ecosystem"; data: { ecosystems: { ecosystemUrl: string; tenantIds: string[]; }[]; integrations: { format: "MATTR"; url: string; }[]; lastSyncTime: number; skipped: boolean; successCount: number; }; id: string; requestId: string; tenantId: string; timestamp: number; type: string; version: "1"; } Properties
category
category: "ecosystem"
Sanitisation Level DATA
data
data: {
ecosystems: {
ecosystemUrl: string;
tenantIds: string[];
}[];
integrations: {
format: "MATTR";
url: string;
}[];
lastSyncTime: number;
skipped: boolean;
successCount: number;
}
Type declaration
ecosystems: {
ecosystemUrl: string;
tenantIds: string[];
}[]
integrations: {
format: "MATTR";
url: string;
}[]
lastSyncTime: number
skipped: boolean
successCount: number
requestId
requestId: string
timestamp
timestamp: number