* $tasksService = new Google\Service\Tasks(...); * $tasks = $tasksService->tasks; * */ class Tasks extends \Google\Service\Resource { /** * 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. (tasks.clear) * * @param string $tasklist Task list identifier. * @param array $optParams Optional parameters. * @throws \Google\Service\Exception */ public function clear($tasklist, $optParams = []) { $params = ['tasklist' => $tasklist]; $params = array_merge($params, $optParams); return $this->call('clear', [$params]); } /** * Deletes the specified task from the task list. If the task is assigned, both * the assigned task and the original task (in Docs, Chat Spaces) are deleted. * To delete the assigned task only, navigate to the assignment surface and * unassign the task from there. (tasks.delete) * * @param string $tasklist Task list identifier. * @param string $task Task identifier. * @param array $optParams Optional parameters. * @throws \Google\Service\Exception */ public function delete($tasklist, $task, $optParams = []) { $params = ['tasklist' => $tasklist, 'task' => $task]; $params = array_merge($params, $optParams); return $this->call('delete', [$params]); } /** * Returns the specified task. (tasks.get) * * @param string $tasklist Task list identifier. * @param string $task Task identifier. * @param array $optParams Optional parameters. * @return Task * @throws \Google\Service\Exception */ public function get($tasklist, $task, $optParams = []) { $params = ['tasklist' => $tasklist, 'task' => $task]; $params = array_merge($params, $optParams); return $this->call('get', [$params], Task::class); } /** * Creates a new task on the specified task list. Tasks assigned from Docs or * Chat Spaces cannot be inserted from Tasks Public API; they can only be * created by assigning them from Docs or Chat Spaces. A user can have up to * 20,000 non-hidden tasks per list and up to 100,000 tasks in total at a time. * (tasks.insert) * * @param string $tasklist Task list identifier. * @param Task $postBody * @param array $optParams Optional parameters. * * @opt_param string parent Parent task identifier. If the task is created at * the top level, this parameter is omitted. An assigned task cannot be a parent * task, nor can it have a parent. Setting the parent to an assigned task * results in failure of the request. Optional. * @opt_param string previous Previous sibling task identifier. If the task is * created at the first position among its siblings, this parameter is omitted. * Optional. * @return Task * @throws \Google\Service\Exception */ public function insert($tasklist, Task $postBody, $optParams = []) { $params = ['tasklist' => $tasklist, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('insert', [$params], Task::class); } /** * Returns all tasks in the specified task list. Does not return assigned tasks * be default (from Docs, Chat Spaces). A user can have up to 20,000 non-hidden * tasks per list and up to 100,000 tasks in total at a time. (tasks.listTasks) * * @param string $tasklist Task list identifier. * @param array $optParams Optional parameters. * * @opt_param string completedMax Upper bound for a task's completion date (as a * RFC 3339 timestamp) to filter by. Optional. The default is not to filter by * completion date. * @opt_param string completedMin Lower bound for a task's completion date (as a * RFC 3339 timestamp) to filter by. Optional. The default is not to filter by * completion date. * @opt_param string dueMax Upper bound for a task's due date (as a RFC 3339 * timestamp) to filter by. Optional. The default is not to filter by due date. * @opt_param string dueMin Lower bound for a task's due date (as a RFC 3339 * timestamp) to filter by. Optional. The default is not to filter by due date. * @opt_param int maxResults Maximum number of tasks returned on one page. * Optional. The default is 20 (max allowed: 100). * @opt_param string pageToken Token specifying the result page to return. * Optional. * @opt_param bool showAssigned Optional. Flag indicating whether tasks assigned * to the current user are returned in the result. Optional. The default is * False. * @opt_param bool showCompleted Flag indicating whether completed tasks are * returned in the result. Note that showHidden must also be True to show tasks * completed in first party clients, such as the web UI and Google's mobile * apps. Optional. The default is True. * @opt_param bool showDeleted Flag indicating whether deleted tasks are * returned in the result. Optional. The default is False. * @opt_param bool showHidden Flag indicating whether hidden tasks are returned * in the result. Optional. The default is False. * @opt_param string updatedMin Lower bound for a task's last modification time * (as a RFC 3339 timestamp) to filter by. Optional. The default is not to * filter by last modification time. * @return TasksModel * @throws \Google\Service\Exception */ public function listTasks($tasklist, $optParams = []) { $params = ['tasklist' => $tasklist]; $params = array_merge($params, $optParams); return $this->call('list', [$params], TasksModel::class); } /** * Moves the specified task to another position in the destination task list. If * the destination list is not specified, the task is moved within its current * 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. A user can have up * to 2,000 subtasks per task. (tasks.move) * * @param string $tasklist Task list identifier. * @param string $task Task identifier. * @param array $optParams Optional parameters. * * @opt_param string destinationTasklist Optional. Destination task list * identifier. If set, the task is moved from tasklist to the * destinationTasklist list. Otherwise the task is moved within its current * list. Recurrent tasks cannot currently be moved between lists. Optional. * @opt_param string parent New parent task identifier. If the task is moved to * the top level, this parameter is omitted. Assigned tasks can not be set as * parent task (have subtasks) or be moved under a parent task (become * subtasks). Optional. * @opt_param string previous New previous sibling task identifier. If the task * is moved to the first position among its siblings, this parameter is omitted. * Optional. * @return Task * @throws \Google\Service\Exception */ public function move($tasklist, $task, $optParams = []) { $params = ['tasklist' => $tasklist, 'task' => $task]; $params = array_merge($params, $optParams); return $this->call('move', [$params], Task::class); } /** * Updates the specified task. This method supports patch semantics. * (tasks.patch) * * @param string $tasklist Task list identifier. * @param string $task Task identifier. * @param Task $postBody * @param array $optParams Optional parameters. * @return Task * @throws \Google\Service\Exception */ public function patch($tasklist, $task, Task $postBody, $optParams = []) { $params = ['tasklist' => $tasklist, 'task' => $task, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('patch', [$params], Task::class); } /** * Updates the specified task. (tasks.update) * * @param string $tasklist Task list identifier. * @param string $task Task identifier. * @param Task $postBody * @param array $optParams Optional parameters. * @return Task * @throws \Google\Service\Exception */ public function update($tasklist, $task, Task $postBody, $optParams = []) { $params = ['tasklist' => $tasklist, 'task' => $task, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('update', [$params], Task::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Tasks::class, 'Google_Service_Tasks_Resource_Tasks');