Safe Haskell | None |
---|---|
Language | Haskell2010 |
Contains the different functions to run the operation postChargesChargeRefunds
Synopsis
- postChargesChargeRefunds :: forall m. MonadHTTP m => Text -> Maybe PostChargesChargeRefundsRequestBody -> ClientT m (Response PostChargesChargeRefundsResponse)
- data PostChargesChargeRefundsRequestBody = PostChargesChargeRefundsRequestBody {
- postChargesChargeRefundsRequestBodyAmount :: Maybe Int
- postChargesChargeRefundsRequestBodyExpand :: Maybe [Text]
- postChargesChargeRefundsRequestBodyMetadata :: Maybe PostChargesChargeRefundsRequestBodyMetadata'Variants
- postChargesChargeRefundsRequestBodyPaymentIntent :: Maybe Text
- postChargesChargeRefundsRequestBodyReason :: Maybe PostChargesChargeRefundsRequestBodyReason'
- postChargesChargeRefundsRequestBodyRefundApplicationFee :: Maybe Bool
- postChargesChargeRefundsRequestBodyReverseTransfer :: Maybe Bool
- mkPostChargesChargeRefundsRequestBody :: PostChargesChargeRefundsRequestBody
- data PostChargesChargeRefundsRequestBodyMetadata'Variants
- data PostChargesChargeRefundsRequestBodyReason'
- data PostChargesChargeRefundsResponse
Documentation
postChargesChargeRefunds Source #
:: forall m. MonadHTTP m | |
=> Text | charge | Constraints: Maximum length of 5000 |
-> Maybe PostChargesChargeRefundsRequestBody | The request body to send |
-> ClientT m (Response PostChargesChargeRefundsResponse) | Monadic computation which returns the result of the operation |
POST /v1/charges/{charge}/refunds
<p>Create a refund.</p>
data PostChargesChargeRefundsRequestBody Source #
Defines the object schema located at paths./v1/charges/{charge}/refunds.POST.requestBody.content.application/x-www-form-urlencoded.schema
in the specification.
mkPostChargesChargeRefundsRequestBody :: PostChargesChargeRefundsRequestBody Source #
Create a new PostChargesChargeRefundsRequestBody
with all required fields.
data PostChargesChargeRefundsRequestBodyMetadata'Variants Source #
Defines the oneOf schema located at paths./v1/charges/{charge}/refunds.POST.requestBody.content.application/x-www-form-urlencoded.schema.properties.metadata.anyOf
in the specification.
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`.
PostChargesChargeRefundsRequestBodyMetadata'EmptyString | Represents the JSON value |
PostChargesChargeRefundsRequestBodyMetadata'Object Object |
Instances
data PostChargesChargeRefundsRequestBodyReason' Source #
Defines the enum schema located at paths./v1/charges/{charge}/refunds.POST.requestBody.content.application/x-www-form-urlencoded.schema.properties.reason
in the specification.
PostChargesChargeRefundsRequestBodyReason'Other Value | This case is used if the value encountered during decoding does not match any of the provided cases in the specification. |
PostChargesChargeRefundsRequestBodyReason'Typed Text | This constructor can be used to send values to the server which are not present in the specification yet. |
PostChargesChargeRefundsRequestBodyReason'EnumDuplicate | Represents the JSON value |
PostChargesChargeRefundsRequestBodyReason'EnumFraudulent | Represents the JSON value |
PostChargesChargeRefundsRequestBodyReason'EnumRequestedByCustomer | Represents the JSON value |
data PostChargesChargeRefundsResponse Source #
Represents a response of the operation postChargesChargeRefunds
.
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), PostChargesChargeRefundsResponseError
is used.
PostChargesChargeRefundsResponseError String | Means either no matching case available or a parse error |
PostChargesChargeRefundsResponse200 Refund | Successful response. |
PostChargesChargeRefundsResponseDefault Error | Error response. |