{-# LANGUAGE DataKinds #-} {-# LANGUAGE DeriveDataTypeable #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE OverloadedStrings #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} -- | -- Module : Network.Google.AppsTasks.Types -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- module Network.Google.AppsTasks.Types ( -- * Service Configuration appsTasksService -- * OAuth Scopes , tasksReadOnlyScope , tasksScope -- * TaskLinksItem , TaskLinksItem , taskLinksItem , tliLink , tliType , tliDescription -- * Tasks , Tasks , tasks , tEtag , tNextPageToken , tKind , tItems -- * TaskLists , TaskLists , taskLists , tlEtag , tlNextPageToken , tlKind , tlItems -- * TaskList , TaskList , taskList , tasEtag , tasKind , tasSelfLink , tasId , tasUpdated , tasTitle -- * Task , Task , task , ttParent , ttStatus , ttDue , ttEtag , ttKind , ttSelfLink , ttHidden , ttCompleted , ttId , ttDeleted , ttUpdated , ttTitle , ttLinks , ttNotes , ttPosition ) where import Network.Google.AppsTasks.Types.Product import Network.Google.AppsTasks.Types.Sum import Network.Google.Prelude -- | Default request referring to version 'v1' of the Tasks API. This contains the host and root path used as a starting point for constructing service requests. appsTasksService :: ServiceConfig appsTasksService = defaultService (ServiceId "tasks:v1") "www.googleapis.com" -- | View your tasks tasksReadOnlyScope :: Proxy '["https://www.googleapis.com/auth/tasks.readonly"] tasksReadOnlyScope = Proxy; -- | Create, edit, organize, and delete all your tasks tasksScope :: Proxy '["https://www.googleapis.com/auth/tasks"] tasksScope = Proxy;