Copyright | (c) 2015-2025 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+gogol@gmail.com> Toni Cebrián <toni@tonicebrian.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Language | GHC2021 |
Gogol.Vault.Matters.Get
Contents
Description
Gets the specified matter.
See: Google Vault API Reference for vault.matters.get
.
Synopsis
- type VaultMattersGetResource = "v1" :> ("matters" :> (Capture "matterId" Text :> (QueryParam "$.xgafv" Xgafv :> (QueryParam "access_token" Text :> (QueryParam "callback" Text :> (QueryParam "uploadType" Text :> (QueryParam "upload_protocol" Text :> (QueryParam "view" MattersGetView :> (QueryParam "alt" AltJSON :> Get '[JSON] Matter)))))))))
- data VaultMattersGet = VaultMattersGet {
- xgafv :: Maybe Xgafv
- accessToken :: Maybe Text
- callback :: Maybe Text
- matterId :: Text
- uploadType :: Maybe Text
- uploadProtocol :: Maybe Text
- view :: Maybe MattersGetView
- newVaultMattersGet :: Text -> VaultMattersGet
Resource
type VaultMattersGetResource = "v1" :> ("matters" :> (Capture "matterId" Text :> (QueryParam "$.xgafv" Xgafv :> (QueryParam "access_token" Text :> (QueryParam "callback" Text :> (QueryParam "uploadType" Text :> (QueryParam "upload_protocol" Text :> (QueryParam "view" MattersGetView :> (QueryParam "alt" AltJSON :> Get '[JSON] Matter))))))))) Source #
A resource alias for vault.matters.get
method which the
VaultMattersGet
request conforms to.
Constructing a Request
data VaultMattersGet Source #
Gets the specified matter.
See: newVaultMattersGet
smart constructor.
Constructors
VaultMattersGet | |
Fields
|
Instances
Arguments
:: Text | The matter ID. See |
-> VaultMattersGet |
Creates a value of VaultMattersGet
with the minimum fields required to make a request.