Safe Haskell | None |
---|---|
Language | Haskell2010 |
Contains the different functions to run the operation postRefundsRefund
Synopsis
- postRefundsRefund :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> PostRefundsRefundRequestBody -> m (Either HttpException (Response PostRefundsRefundResponse))
- postRefundsRefundRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> PostRefundsRefundRequestBody -> m (Either HttpException (Response ByteString))
- postRefundsRefundM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> PostRefundsRefundRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response PostRefundsRefundResponse))
- postRefundsRefundRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> PostRefundsRefundRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString))
- data PostRefundsRefundRequestBody = PostRefundsRefundRequestBody {}
- data PostRefundsRefundRequestBodyMetadata' = PostRefundsRefundRequestBodyMetadata' {
- data PostRefundsRefundResponse
Documentation
:: (MonadHTTP m, SecurityScheme s) | |
=> Configuration s | The configuration to use in the request |
-> String | refund |
-> PostRefundsRefundRequestBody | The request body to send |
-> m (Either HttpException (Response PostRefundsRefundResponse)) | Monad containing the result of the operation |
POST /v1/refunds/{refund}
<p>Updates the specified refund by setting the values of the parameters passed. Any parameters not provided will be left unchanged.</p>
<p>This request only accepts <code>metadata</code> as an argument.</p>
postRefundsRefundRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> PostRefundsRefundRequestBody -> m (Either HttpException (Response ByteString)) Source #
POST /v1/refunds/{refund}
The same as postRefundsRefund
but returns the raw ByteString
postRefundsRefundM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> PostRefundsRefundRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response PostRefundsRefundResponse)) Source #
POST /v1/refunds/{refund}
Monadic version of postRefundsRefund
(use with runWithConfiguration
)
postRefundsRefundRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> PostRefundsRefundRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString)) Source #
POST /v1/refunds/{refund}
Monadic version of postRefundsRefundRaw
(use with runWithConfiguration
)
data PostRefundsRefundRequestBody Source #
Defines the data type for the schema postRefundsRefundRequestBody
PostRefundsRefundRequestBody | |
|
Instances
data PostRefundsRefundRequestBodyMetadata' Source #
Defines the data type for the schema postRefundsRefundRequestBodyMetadata'
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 PostRefundsRefundResponse Source #
Represents a response of the operation postRefundsRefund
.
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), PostRefundsRefundResponseError
is used.
PostRefundsRefundResponseError String | Means either no matching case available or a parse error |
PostRefundsRefundResponse200 Refund | Successful response. |
PostRefundsRefundResponseDefault Error | Error response. |