{-# LANGUAGE DataKinds #-} {-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE TypeOperators #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-duplicate-exports #-} -- | -- Module : Network.Google.Script -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Executes Google Apps Script projects. -- -- /See:/ module Network.Google.Script ( -- * Service Configuration scriptService -- * OAuth Scopes , mailGoogleComScope , m8FeedsScope , adminDirectoryUserScope , userInfoEmailScope , formsCurrentOnlyScope , driveScope , adminDirectoryGroupScope , calendarFeedsScope , formsScope , spreadsheetsScope , groupsScope -- * API Declaration , ScriptAPI -- * Resources -- ** script.scripts.run , module Network.Google.Resource.Script.Scripts.Run -- * Types -- ** Status , Status , status , sDetails , sCode , sMessage -- ** Operation , Operation , operation , oDone , oError , oResponse , oName , oMetadata -- ** ExecutionRequest , ExecutionRequest , executionRequest , erFunction , erSessionState , erDevMode , erParameters -- ** StatusDetailsItem , StatusDetailsItem , statusDetailsItem , sdiAddtional -- ** ScriptStackTraceElement , ScriptStackTraceElement , scriptStackTraceElement , ssteFunction , ssteLineNumber -- ** ExecutionError , ExecutionError , executionError , eeScriptStackTraceElements , eeErrorType , eeErrorMessage -- ** OperationMetadata , OperationMetadata , operationMetadata , omAddtional -- ** OperationResponse , OperationResponse , operationResponse , orAddtional -- ** ExecutionResponse , ExecutionResponse , executionResponse , erStatus , erResult ) where import Network.Google.Prelude import Network.Google.Resource.Script.Scripts.Run import Network.Google.Script.Types {- $resources TODO -} -- | Represents the entirety of the methods and resources available for the Google Apps Script Execution API service. type ScriptAPI = ScriptsRunResource