GapiTasksV1Service.TasksResource
val clear :
?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
tasklist:string ->
GapiConversation.Session.t ->
unit * GapiConversation.Session.t
Clears all completed tasks from the specified task list. The affected tasks will be marked as 'hidden' and no longer be returned by default when retrieving all tasks for a task list.
val delete :
?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
tasklist:string ->
task:string ->
GapiConversation.Session.t ->
unit * GapiConversation.Session.t
Deletes the specified task from the task list.
val get :
?base_url:string ->
?etag:string ->
?std_params:GapiService.StandardParameters.t ->
tasklist:string ->
task:string ->
GapiConversation.Session.t ->
GapiTasksV1Model.Task.t * GapiConversation.Session.t
Returns the specified task.
val insert :
?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?parent:string ->
?previous:string ->
tasklist:string ->
GapiTasksV1Model.Task.t ->
GapiConversation.Session.t ->
GapiTasksV1Model.Task.t * GapiConversation.Session.t
Creates a new task on the specified task list.
val list :
?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?completedMax:string ->
?completedMin:string ->
?dueMax:string ->
?dueMin:string ->
?maxResults:int64 ->
?pageToken:string ->
?showCompleted:bool ->
?showDeleted:bool ->
?showHidden:bool ->
?updatedMin:string ->
tasklist:string ->
GapiConversation.Session.t ->
GapiTasksV1Model.Tasks.t * GapiConversation.Session.t
Returns all tasks in the specified task list.
val move :
?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?parent:string ->
?previous:string ->
tasklist:string ->
task:string ->
GapiConversation.Session.t ->
GapiTasksV1Model.Task.t * GapiConversation.Session.t
Moves the specified task to another position in the task list. This can include putting it as a child task under a new parent and/or move it to a different position among its sibling tasks.
val patch :
?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
tasklist:string ->
task:string ->
GapiTasksV1Model.Task.t ->
GapiConversation.Session.t ->
GapiTasksV1Model.Task.t * GapiConversation.Session.t
Updates the specified task. This method supports patch semantics.
val update :
?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
tasklist:string ->
task:string ->
GapiTasksV1Model.Task.t ->
GapiConversation.Session.t ->
GapiTasksV1Model.Task.t * GapiConversation.Session.t
Updates the specified task.