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.Update
Contents
Description
Updates the specified matter. This updates only the name and description of the matter, identified by matter ID. Changes to any other fields are ignored. Returns the default view of the matter.
See: Google Vault API Reference for vault.matters.update
.
Synopsis
- type VaultMattersUpdateResource = "v1" :> ("matters" :> (Capture "matterId" Text :> (QueryParam "$.xgafv" Xgafv :> (QueryParam "access_token" Text :> (QueryParam "callback" Text :> (QueryParam "uploadType" Text :> (QueryParam "upload_protocol" Text :> (QueryParam "alt" AltJSON :> (ReqBody '[JSON] Matter :> Put '[JSON] Matter)))))))))
- data VaultMattersUpdate = VaultMattersUpdate {}
- newVaultMattersUpdate :: Text -> Matter -> VaultMattersUpdate
Resource
type VaultMattersUpdateResource = "v1" :> ("matters" :> (Capture "matterId" Text :> (QueryParam "$.xgafv" Xgafv :> (QueryParam "access_token" Text :> (QueryParam "callback" Text :> (QueryParam "uploadType" Text :> (QueryParam "upload_protocol" Text :> (QueryParam "alt" AltJSON :> (ReqBody '[JSON] Matter :> Put '[JSON] Matter))))))))) Source #
A resource alias for vault.matters.update
method which the
VaultMattersUpdate
request conforms to.
Constructing a Request
data VaultMattersUpdate Source #
Updates the specified matter. This updates only the name and description of the matter, identified by matter ID. Changes to any other fields are ignored. Returns the default view of the matter.
See: newVaultMattersUpdate
smart constructor.
Constructors
VaultMattersUpdate | |
Fields
|
Instances
newVaultMattersUpdate Source #
Arguments
:: Text | The matter ID. See |
-> Matter | Multipart request metadata. See |
-> VaultMattersUpdate |
Creates a value of VaultMattersUpdate
with the minimum fields required to make a request.