{-# LANGUAGE DataKinds #-} {-# LANGUAGE DeriveDataTypeable #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE TypeOperators #-} {-# OPTIONS_GHC -fno-warn-duplicate-exports #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} -- | -- Module : Network.Google.Resource.Surveys.Surveys.Start -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Begins running a survey. -- -- /See:/ for @surveys.surveys.start@. module Network.Google.Resource.Surveys.Surveys.Start ( -- * REST Resource SurveysStartResource -- * Creating a Request , surveysStart , SurveysStart -- * Request Lenses , ssResourceId , ssPayload ) where import Network.Google.Prelude import Network.Google.Surveys.Types -- | A resource alias for @surveys.surveys.start@ method which the -- 'SurveysStart' request conforms to. type SurveysStartResource = "surveys" :> "v2" :> "surveys" :> Capture "resourceId" Text :> "start" :> QueryParam "alt" AltJSON :> ReqBody '[JSON] SurveysStartRequest :> Post '[JSON] SurveysStartResponse -- | Begins running a survey. -- -- /See:/ 'surveysStart' smart constructor. data SurveysStart = SurveysStart' { _ssResourceId :: !Text , _ssPayload :: !SurveysStartRequest } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'SurveysStart' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'ssResourceId' -- -- * 'ssPayload' surveysStart :: Text -- ^ 'ssResourceId' -> SurveysStartRequest -- ^ 'ssPayload' -> SurveysStart surveysStart pSsResourceId_ pSsPayload_ = SurveysStart' { _ssResourceId = pSsResourceId_ , _ssPayload = pSsPayload_ } ssResourceId :: Lens' SurveysStart Text ssResourceId = lens _ssResourceId (\ s a -> s{_ssResourceId = a}) -- | Multipart request metadata. ssPayload :: Lens' SurveysStart SurveysStartRequest ssPayload = lens _ssPayload (\ s a -> s{_ssPayload = a}) instance GoogleRequest SurveysStart where type Rs SurveysStart = SurveysStartResponse type Scopes SurveysStart = '["https://www.googleapis.com/auth/surveys", "https://www.googleapis.com/auth/userinfo.email"] requestClient SurveysStart'{..} = go _ssResourceId (Just AltJSON) _ssPayload surveysService where go = buildClient (Proxy :: Proxy SurveysStartResource) mempty