Interface EcosystemSyncSuccessEvent

interface EcosystemSyncSuccessEventSanitised {
    category: "ecosystem";
    data: {
        ecosystemUrl: string;
        lastSyncTime: number;
        policyVersion: string;
        skipped: boolean;
    };
    id: string;
    requestId: string;
    tenantId: string;
    timestamp: number;
    type: string;
    version: "1";
}

Properties

category: "ecosystem"
data: {
    ecosystemUrl: string;
    lastSyncTime: number;
    policyVersion: string;
    skipped: boolean;
}

Type declaration

  • ecosystemUrl: string
  • lastSyncTime: number
  • policyVersion: string
  • skipped: boolean
id: string
requestId: string
tenantId: string
timestamp: number
type: string
version: "1"