Function ScheduledTasksApiAxiosParamCreator

ScheduledTasksApi - axios parameter creator

  • Parameters

    Returns {
        getTask: (
            taskId: string,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
        getTasks: (
            isHidden?: boolean,
            isEnabled?: boolean,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
        startTask: (
            taskId: string,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
        stopTask: (
            taskId: string,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
        updateTask: (
            taskId: string,
            taskTriggerInfo: TaskTriggerInfo[],
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
    }

    • getTask: (taskId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>
    • getTasks: (
          isHidden?: boolean,
          isEnabled?: boolean,
          options?: RawAxiosRequestConfig,
      ) => Promise<RequestArgs>
    • startTask: (taskId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>
    • stopTask: (taskId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>
    • updateTask: (
          taskId: string,
          taskTriggerInfo: TaskTriggerInfo[],
          options?: RawAxiosRequestConfig,
      ) => Promise<RequestArgs>