{-# 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.YouTube.CommentThreads.Insert -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Creates a new top-level comment. To add a reply to an existing comment, -- use the comments.insert method instead. -- -- /See:/ for @youtube.commentThreads.insert@. module Network.Google.Resource.YouTube.CommentThreads.Insert ( -- * REST Resource CommentThreadsInsertResource -- * Creating a Request , commentThreadsInsert , CommentThreadsInsert -- * Request Lenses , ctiPart , ctiPayload ) where import Network.Google.Prelude import Network.Google.YouTube.Types -- | A resource alias for @youtube.commentThreads.insert@ method which the -- 'CommentThreadsInsert' request conforms to. type CommentThreadsInsertResource = "youtube" :> "v3" :> "commentThreads" :> QueryParam "part" Text :> QueryParam "alt" AltJSON :> ReqBody '[JSON] CommentThread :> Post '[JSON] CommentThread -- | Creates a new top-level comment. To add a reply to an existing comment, -- use the comments.insert method instead. -- -- /See:/ 'commentThreadsInsert' smart constructor. data CommentThreadsInsert = CommentThreadsInsert' { _ctiPart :: !Text , _ctiPayload :: !CommentThread } deriving (Eq, Show, Data, Typeable, Generic) -- | Creates a value of 'CommentThreadsInsert' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'ctiPart' -- -- * 'ctiPayload' commentThreadsInsert :: Text -- ^ 'ctiPart' -> CommentThread -- ^ 'ctiPayload' -> CommentThreadsInsert commentThreadsInsert pCtiPart_ pCtiPayload_ = CommentThreadsInsert' {_ctiPart = pCtiPart_, _ctiPayload = pCtiPayload_} -- | The part parameter identifies the properties that the API response will -- include. Set the parameter value to snippet. The snippet part has a -- quota cost of 2 units. ctiPart :: Lens' CommentThreadsInsert Text ctiPart = lens _ctiPart (\ s a -> s{_ctiPart = a}) -- | Multipart request metadata. ctiPayload :: Lens' CommentThreadsInsert CommentThread ctiPayload = lens _ctiPayload (\ s a -> s{_ctiPayload = a}) instance GoogleRequest CommentThreadsInsert where type Rs CommentThreadsInsert = CommentThread type Scopes CommentThreadsInsert = '["https://www.googleapis.com/auth/youtube.force-ssl"] requestClient CommentThreadsInsert'{..} = go (Just _ctiPart) (Just AltJSON) _ctiPayload youTubeService where go = buildClient (Proxy :: Proxy CommentThreadsInsertResource) mempty