Type Alias GetDiProjectDiTaskRuntimeStateHttpResponse

type GetDiProjectDiTaskRuntimeStateHttpResponse = {
    data: {
        lastRun?: DataTaskInstanceState;
        runReadiness?: {
            message?: string;
            state?: "READY_TO_RUN" | "ALREADY_RUNNING" | "NOT_RUNNABLE";
        };
    };
    headers: Headers;
    status: 200;
}
Index

Properties

Properties

data: {
    lastRun?: DataTaskInstanceState;
    runReadiness?: {
        message?: string;
        state?: "READY_TO_RUN" | "ALREADY_RUNNING" | "NOT_RUNNABLE";
    };
}
headers: Headers
status: 200