gogol-apps-tasks-0.0.1: Google Tasks SDK.

Copyright(c) 2015 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.Google.Resource.Tasks.Tasks.List

Contents

Description

Returns all tasks in the specified task list.

See: Tasks API Reference for tasks.tasks.list.

Synopsis

REST Resource

type TasksListResource = "tasks" :> ("v1" :> ("lists" :> (Capture "tasklist" Text :> ("tasks" :> (QueryParam "dueMax" Text :> (QueryParam "showDeleted" Bool :> (QueryParam "showCompleted" Bool :> (QueryParam "dueMin" Text :> (QueryParam "showHidden" Bool :> (QueryParam "completedMax" Text :> (QueryParam "updatedMin" Text :> (QueryParam "completedMin" Text :> (QueryParam "pageToken" Text :> (QueryParam "maxResults" (Textual Int64) :> (QueryParam "alt" AltJSON :> Get `[JSON]` Tasks))))))))))))))) Source

A resource alias for tasks.tasks.list method which the TasksList request conforms to.

Creating a Request

tasksList Source

Arguments

:: Text

tlTaskList

-> TasksList 

Creates a value of TasksList with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

data TasksList Source

Returns all tasks in the specified task list.

See: tasksList smart constructor.

Request Lenses

tlDueMax :: Lens' TasksList (Maybe Text) Source

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.

tlShowDeleted :: Lens' TasksList (Maybe Bool) Source

Flag indicating whether deleted tasks are returned in the result. Optional. The default is False.

tlShowCompleted :: Lens' TasksList (Maybe Bool) Source

Flag indicating whether completed tasks are returned in the result. Optional. The default is True.

tlDueMin :: Lens' TasksList (Maybe Text) Source

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.

tlShowHidden :: Lens' TasksList (Maybe Bool) Source

Flag indicating whether hidden tasks are returned in the result. Optional. The default is False.

tlCompletedMax :: Lens' TasksList (Maybe Text) Source

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.

tlUpdatedMin :: Lens' TasksList (Maybe Text) Source

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.

tlTaskList :: Lens' TasksList Text Source

Task list identifier.

tlCompletedMin :: Lens' TasksList (Maybe Text) Source

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.

tlPageToken :: Lens' TasksList (Maybe Text) Source

Token specifying the result page to return. Optional.

tlMaxResults :: Lens' TasksList (Maybe Int64) Source

Maximum number of task lists returned on one page. Optional. The default is 100.