본문으로 건너뛰기

TaskChecklistService

Index

Constructors

constructor

Properties

publicreadonlyhttpRequest

httpRequest: BaseHttpRequest

Methods

publictaskChecklistCreate

publictaskChecklistInfo

  • Get a checklist item's information Bot-compatible Retrieves information about a checklist item in a task.

    @throws

    ApiError


    Parameters

    • __namedParameters: { id: string }

    Returns CancelablePromise<{ data?: GetTaskCheckListResponse }>

    any Successfully retrieved information about the checklist item.

publictaskChecklistList

  • List out checklist items Bot-compatible Lists out a given number of items from a task's checklist. This method uses the Swit API's pagination scheme.

    @throws

    ApiError


    Parameters

    • __namedParameters: { limit?: number; offset?: string; taskId: string }

    Returns CancelablePromise<{ data?: GetTaskCheckListListResponse }>

    any Successfully retrieved items from the checklist.

publictaskChecklistRemove

  • Delete a checklist item Bot-compatible Deletes an item in a task's checklist.

    @throws

    ApiError


    Parameters

    Returns CancelablePromise<any>

    any Successfully deleted the checklist item.

publictaskChecklistUpdate