Type Alias AlertingExecutionPersist

type AlertingExecutionPersist = {
    accessMode?: "SOURCE_ACCESS" | "TARGET_ACCESS";
    alertId?: string;
    bookmarkId?: string;
    conditionId?: string;
    conditionStatus?: "FINISHED" | "FAILED";
    dimensions?: string[];
    errors?: AlertingExecutionErrors;
    evaluationId?: string;
    executionEvaluationStatus?:
        | "CONDITION_MET"
        | "CONDITION_NOT_MET"
        | "FAILED";
    executionType?: "INDIVIDUAL"
    | "SHARED";
    id?: string;
    measures?: string[];
    ownerId?: string;
    result?: AlertingExecutionResult;
    tenantId?: string;
    triggerTime?: string;
    workflowId?: string;
}
Index

Properties

accessMode?: "SOURCE_ACCESS" | "TARGET_ACCESS"
alertId?: string
bookmarkId?: string
conditionId?: string
conditionStatus?: "FINISHED" | "FAILED"
dimensions?: string[]
evaluationId?: string
executionEvaluationStatus?: "CONDITION_MET" | "CONDITION_NOT_MET" | "FAILED"
executionType?: "INDIVIDUAL" | "SHARED"
id?: string
measures?: string[]
ownerId?: string
tenantId?: string
triggerTime?: string
workflowId?: string