Interface IDataAlertValidateActionsResponse

interface IDataAlertValidateActionsResponse {
    status: "FAILURE" | "SUCCESS";
    validations: IDataAlertAlertingTaskValidation[];
}

Properties

Properties

status: "FAILURE" | "SUCCESS"