{-# 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.PlayListItems.List -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Returns a collection of playlist items that match the API request -- parameters. You can retrieve all of the playlist items in a specified -- playlist or retrieve one or more playlist items by their unique IDs. -- -- /See:/ for @youtube.playlistItems.list@. module Network.Google.Resource.YouTube.PlayListItems.List ( -- * REST Resource PlayListItemsListResource -- * Creating a Request , playListItemsList , PlayListItemsList -- * Request Lenses , plilPart , plilOnBehalfOfContentOwner , plilVideoId , plilId , plilPageToken , plilPlayListId , plilMaxResults ) where import Network.Google.Prelude import Network.Google.YouTube.Types -- | A resource alias for @youtube.playlistItems.list@ method which the -- 'PlayListItemsList' request conforms to. type PlayListItemsListResource = "youtube" :> "v3" :> "playlistItems" :> QueryParam "part" Text :> QueryParam "onBehalfOfContentOwner" Text :> QueryParam "videoId" Text :> QueryParam "id" Text :> QueryParam "pageToken" Text :> QueryParam "playlistId" Text :> QueryParam "maxResults" (Textual Word32) :> QueryParam "alt" AltJSON :> Get '[JSON] PlayListItemListResponse -- | Returns a collection of playlist items that match the API request -- parameters. You can retrieve all of the playlist items in a specified -- playlist or retrieve one or more playlist items by their unique IDs. -- -- /See:/ 'playListItemsList' smart constructor. data PlayListItemsList = PlayListItemsList' { _plilPart :: !Text , _plilOnBehalfOfContentOwner :: !(Maybe Text) , _plilVideoId :: !(Maybe Text) , _plilId :: !(Maybe Text) , _plilPageToken :: !(Maybe Text) , _plilPlayListId :: !(Maybe Text) , _plilMaxResults :: !(Textual Word32) } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'PlayListItemsList' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'plilPart' -- -- * 'plilOnBehalfOfContentOwner' -- -- * 'plilVideoId' -- -- * 'plilId' -- -- * 'plilPageToken' -- -- * 'plilPlayListId' -- -- * 'plilMaxResults' playListItemsList :: Text -- ^ 'plilPart' -> PlayListItemsList playListItemsList pPlilPart_ = PlayListItemsList' { _plilPart = pPlilPart_ , _plilOnBehalfOfContentOwner = Nothing , _plilVideoId = Nothing , _plilId = Nothing , _plilPageToken = Nothing , _plilPlayListId = Nothing , _plilMaxResults = 5 } -- | The part parameter specifies a comma-separated list of one or more -- playlistItem resource properties that the API response will include. If -- the parameter identifies a property that contains child properties, the -- child properties will be included in the response. For example, in a -- playlistItem resource, the snippet property contains numerous fields, -- including the title, description, position, and resourceId properties. -- As such, if you set part=snippet, the API response will contain all of -- those properties. plilPart :: Lens' PlayListItemsList Text plilPart = lens _plilPart (\ s a -> s{_plilPart = a}) -- | Note: This parameter is intended exclusively for YouTube content -- partners. The onBehalfOfContentOwner parameter indicates that the -- request\'s authorization credentials identify a YouTube CMS user who is -- acting on behalf of the content owner specified in the parameter value. -- This parameter is intended for YouTube content partners that own and -- manage many different YouTube channels. It allows content owners to -- authenticate once and get access to all their video and channel data, -- without having to provide authentication credentials for each individual -- channel. The CMS account that the user authenticates with must be linked -- to the specified YouTube content owner. plilOnBehalfOfContentOwner :: Lens' PlayListItemsList (Maybe Text) plilOnBehalfOfContentOwner = lens _plilOnBehalfOfContentOwner (\ s a -> s{_plilOnBehalfOfContentOwner = a}) -- | The videoId parameter specifies that the request should return only the -- playlist items that contain the specified video. plilVideoId :: Lens' PlayListItemsList (Maybe Text) plilVideoId = lens _plilVideoId (\ s a -> s{_plilVideoId = a}) -- | The id parameter specifies a comma-separated list of one or more unique -- playlist item IDs. plilId :: Lens' PlayListItemsList (Maybe Text) plilId = lens _plilId (\ s a -> s{_plilId = a}) -- | The pageToken parameter identifies a specific page in the result set -- that should be returned. In an API response, the nextPageToken and -- prevPageToken properties identify other pages that could be retrieved. plilPageToken :: Lens' PlayListItemsList (Maybe Text) plilPageToken = lens _plilPageToken (\ s a -> s{_plilPageToken = a}) -- | The playlistId parameter specifies the unique ID of the playlist for -- which you want to retrieve playlist items. Note that even though this is -- an optional parameter, every request to retrieve playlist items must -- specify a value for either the id parameter or the playlistId parameter. plilPlayListId :: Lens' PlayListItemsList (Maybe Text) plilPlayListId = lens _plilPlayListId (\ s a -> s{_plilPlayListId = a}) -- | The maxResults parameter specifies the maximum number of items that -- should be returned in the result set. plilMaxResults :: Lens' PlayListItemsList Word32 plilMaxResults = lens _plilMaxResults (\ s a -> s{_plilMaxResults = a}) . _Coerce instance GoogleRequest PlayListItemsList where type Rs PlayListItemsList = PlayListItemListResponse type Scopes PlayListItemsList = '["https://www.googleapis.com/auth/youtube", "https://www.googleapis.com/auth/youtube.force-ssl", "https://www.googleapis.com/auth/youtube.readonly", "https://www.googleapis.com/auth/youtubepartner"] requestClient PlayListItemsList'{..} = go (Just _plilPart) _plilOnBehalfOfContentOwner _plilVideoId _plilId _plilPageToken _plilPlayListId (Just _plilMaxResults) (Just AltJSON) youTubeService where go = buildClient (Proxy :: Proxy PlayListItemsListResource) mempty