Interface EcosystemSyncAllSuccessEvent

interface EcosystemSyncAllSuccessEventSanitised {
    category: "ecosystem";
    data: {
        ecosystems: {
            ecosystemUrl: string;
            tenantIds: string[];
        }[];
        lastSyncTime: number;
        skipped: boolean;
        successCount: number;
    };
    id: string;
    requestId: string;
    tenantId: string;
    timestamp: number;
    type: string;
    version: "1";
}

Properties

category: "ecosystem"
data: {
    ecosystems: {
        ecosystemUrl: string;
        tenantIds: string[];
    }[];
    lastSyncTime: number;
    skipped: boolean;
    successCount: number;
}

Type declaration

  • ecosystems: {
        ecosystemUrl: string;
        tenantIds: string[];
    }[]
  • lastSyncTime: number
  • skipped: boolean
  • successCount: number
id: string
requestId: string
tenantId: string
timestamp: number
type: string
version: "1"