Interface EcosystemConfigCreateSuccessEvent

interface EcosystemConfigCreateSuccessEventSanitised {
    category: "ecosystem";
    data: {
        ecosystems: {
            url: string;
        }[];
        isIssuanceRestricted: boolean;
        isVerificationRestricted: boolean;
    };
    id: string;
    requestId: string;
    tenantId: string;
    timestamp: number;
    type: string;
    version: "1";
}

Properties

category: "ecosystem"
data: {
    ecosystems: {
        url: string;
    }[];
    isIssuanceRestricted: boolean;
    isVerificationRestricted: boolean;
}

Type declaration

  • ecosystems: {
        url: string;
    }[]
  • isIssuanceRestricted: boolean
  • isVerificationRestricted: boolean
id: string
requestId: string
tenantId: string
timestamp: number
type: string
version: "1"