Interface EcosystemTenantSyncAllSuccessEvent

interface EcosystemTenantSyncAllSuccessEventSanitised {
    category: "ecosystem";
    data: {
        integrations: {
            format: "MATTR";
            url: string;
        }[];
        tenantConfiguration: {
            ecosystems: {
                url: string;
            }[];
        };
    };
    id: string;
    requestId: string;
    tenantId: string;
    timestamp: number;
    type: string;
    version: "1";
}

Properties

category: "ecosystem"
data: {
    integrations: {
        format: "MATTR";
        url: string;
    }[];
    tenantConfiguration: {
        ecosystems: {
            url: string;
        }[];
    };
}

Type declaration

  • integrations: {
        format: "MATTR";
        url: string;
    }[]
  • tenantConfiguration: {
        ecosystems: {
            url: string;
        }[];
    }
    • ecosystems: {
          url: string;
      }[]
id: string
requestId: string
tenantId: string
timestamp: number
type: string
version: "1"