{-# 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.Gmail.Users.Messages.Untrash -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Removes the specified message from the trash. -- -- /See:/ for @gmail.users.messages.untrash@. module Network.Google.Resource.Gmail.Users.Messages.Untrash ( -- * REST Resource UsersMessagesUntrashResource -- * Creating a Request , usersMessagesUntrash , UsersMessagesUntrash -- * Request Lenses , umuUserId , umuId ) where import Network.Google.Gmail.Types import Network.Google.Prelude -- | A resource alias for @gmail.users.messages.untrash@ method which the -- 'UsersMessagesUntrash' request conforms to. type UsersMessagesUntrashResource = "gmail" :> "v1" :> "users" :> Capture "userId" Text :> "messages" :> Capture "id" Text :> "untrash" :> QueryParam "alt" AltJSON :> Post '[JSON] Message -- | Removes the specified message from the trash. -- -- /See:/ 'usersMessagesUntrash' smart constructor. data UsersMessagesUntrash = UsersMessagesUntrash' { _umuUserId :: !Text , _umuId :: !Text } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'UsersMessagesUntrash' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'umuUserId' -- -- * 'umuId' usersMessagesUntrash :: Text -- ^ 'umuId' -> UsersMessagesUntrash usersMessagesUntrash pUmuId_ = UsersMessagesUntrash' { _umuUserId = "me" , _umuId = pUmuId_ } -- | The user\'s email address. The special value me can be used to indicate -- the authenticated user. umuUserId :: Lens' UsersMessagesUntrash Text umuUserId = lens _umuUserId (\ s a -> s{_umuUserId = a}) -- | The ID of the message to remove from Trash. umuId :: Lens' UsersMessagesUntrash Text umuId = lens _umuId (\ s a -> s{_umuId = a}) instance GoogleRequest UsersMessagesUntrash where type Rs UsersMessagesUntrash = Message type Scopes UsersMessagesUntrash = '["https://mail.google.com/", "https://www.googleapis.com/auth/gmail.modify"] requestClient UsersMessagesUntrash'{..} = go _umuUserId _umuId (Just AltJSON) gmailService where go = buildClient (Proxy :: Proxy UsersMessagesUntrashResource) mempty