Interface EcosystemValidateParticipantFailEvent

interface EcosystemValidateParticipantFailEventSanitised {
    category: "ecosystem";
    data: {
        error: {
            message: string;
            type: string;
        };
    } | {
        failReasons: {
            message: string;
            type: string;
        }[];
        identifier: undefined | string;
        policyVersion: undefined | string;
        validated: false;
    };
    id: string;
    requestId: string;
    tenantId: string;
    timestamp: number;
    type: string;
    version: "1";
}

Properties

category: "ecosystem"
data: {
    error: {
        message: string;
        type: string;
    };
} | {
    failReasons: {
        message: string;
        type: string;
    }[];
    identifier: undefined | string;
    policyVersion: undefined | string;
    validated: false;
}

Type declaration

  • error: {
        message: string;
        type: string;
    }
    • message: string
    • type: string

Type declaration

  • failReasons: {
        message: string;
        type: string;
    }[]
  • identifier: undefined | string
  • policyVersion: undefined | string
  • validated: false
id: string
requestId: string
tenantId: string
timestamp: number
type: string
version: "1"