Type Alias Evaluation

type Evaluation = {
    causalEvent?: unknown;
    conditionId?: string;
    contextId?: string;
    dataConditionEvaluatorId?: string;
    endTime?: string;
    id?: string;
    ownerId?: string;
    result?: "success" | "failure" | "error";
    resultData?: unknown;
    startTime?: string;
    status?: "RUNNING" | "FAILED" | "FINISHED";
    tenantId?: string;
}
Index

Properties

causalEvent?: unknown

Representation of the event that caused the condition to be evaluated if one was included on when the evaluation was triggered

conditionId?: string
contextId?: string
dataConditionEvaluatorId?: string
endTime?: string
id?: string
ownerId?: string
result?: "success" | "failure" | "error"
resultData?: unknown
startTime?: string
status?: "RUNNING" | "FAILED" | "FINISHED"
tenantId?: string