Safe Haskell | None |
---|---|
Language | Haskell2010 |
Contains the different functions to run the operation postIssuingDisputesDispute
Synopsis
- postIssuingDisputesDispute :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> PostIssuingDisputesDisputeRequestBody -> m (Either HttpException (Response PostIssuingDisputesDisputeResponse))
- postIssuingDisputesDisputeRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> PostIssuingDisputesDisputeRequestBody -> m (Either HttpException (Response ByteString))
- postIssuingDisputesDisputeM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> PostIssuingDisputesDisputeRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response PostIssuingDisputesDisputeResponse))
- postIssuingDisputesDisputeRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> PostIssuingDisputesDisputeRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString))
- data PostIssuingDisputesDisputeRequestBody = PostIssuingDisputesDisputeRequestBody {}
- data PostIssuingDisputesDisputeRequestBodyMetadata' = PostIssuingDisputesDisputeRequestBodyMetadata' {
- data PostIssuingDisputesDisputeResponse
Documentation
postIssuingDisputesDispute Source #
:: (MonadHTTP m, SecurityScheme s) | |
=> Configuration s | The configuration to use in the request |
-> String | dispute | Constraints: Maximum length of 5000 |
-> PostIssuingDisputesDisputeRequestBody | The request body to send |
-> m (Either HttpException (Response PostIssuingDisputesDisputeResponse)) | Monad containing the result of the operation |
POST /v1/issuing/disputes/{dispute}
<p>Updates the specified Issuing <code>Dispute</code> object by setting the values of the parameters passed. Any parameters not provided will be left unchanged.</p>
postIssuingDisputesDisputeRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> PostIssuingDisputesDisputeRequestBody -> m (Either HttpException (Response ByteString)) Source #
POST /v1/issuing/disputes/{dispute}
The same as postIssuingDisputesDispute
but returns the raw ByteString
postIssuingDisputesDisputeM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> PostIssuingDisputesDisputeRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response PostIssuingDisputesDisputeResponse)) Source #
POST /v1/issuing/disputes/{dispute}
Monadic version of postIssuingDisputesDispute
(use with runWithConfiguration
)
postIssuingDisputesDisputeRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> PostIssuingDisputesDisputeRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString)) Source #
POST /v1/issuing/disputes/{dispute}
Monadic version of postIssuingDisputesDisputeRaw
(use with runWithConfiguration
)
data PostIssuingDisputesDisputeRequestBody Source #
Defines the data type for the schema postIssuingDisputesDisputeRequestBody
PostIssuingDisputesDisputeRequestBody | |
|
data PostIssuingDisputesDisputeRequestBodyMetadata' Source #
Defines the data type for the schema postIssuingDisputesDisputeRequestBodyMetadata'
Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
data PostIssuingDisputesDisputeResponse Source #
Represents a response of the operation postIssuingDisputesDispute
.
The response constructor is chosen by the status code of the response. If no case matches (no specific case for the response code, no range case, no default case), PostIssuingDisputesDisputeResponseError
is used.
PostIssuingDisputesDisputeResponseError String | Means either no matching case available or a parse error |
PostIssuingDisputesDisputeResponse200 Issuing'dispute | Successful response. |
PostIssuingDisputesDisputeResponseDefault Error | Error response. |