| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
StripeAPI.Operations.PostChargesChargeRefunds
Description
Contains the different functions to run the operation postChargesChargeRefunds
Synopsis
- postChargesChargeRefunds :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> PostChargesChargeRefundsRequestBody -> m (Either HttpException (Response PostChargesChargeRefundsResponse))
- postChargesChargeRefundsRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> PostChargesChargeRefundsRequestBody -> m (Either HttpException (Response ByteString))
- postChargesChargeRefundsM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> PostChargesChargeRefundsRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response PostChargesChargeRefundsResponse))
- postChargesChargeRefundsRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> PostChargesChargeRefundsRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString))
- data PostChargesChargeRefundsRequestBody = PostChargesChargeRefundsRequestBody {
- postChargesChargeRefundsRequestBodyAmount :: Maybe Integer
- postChargesChargeRefundsRequestBodyExpand :: Maybe ([] String)
- postChargesChargeRefundsRequestBodyMetadata :: Maybe PostChargesChargeRefundsRequestBodyMetadata'
- postChargesChargeRefundsRequestBodyPaymentIntent :: Maybe String
- postChargesChargeRefundsRequestBodyReason :: Maybe PostChargesChargeRefundsRequestBodyReason'
- postChargesChargeRefundsRequestBodyRefundApplicationFee :: Maybe Bool
- postChargesChargeRefundsRequestBodyReverseTransfer :: Maybe Bool
- data PostChargesChargeRefundsRequestBodyMetadata' = PostChargesChargeRefundsRequestBodyMetadata' {
- data PostChargesChargeRefundsRequestBodyReason'
- = PostChargesChargeRefundsRequestBodyReason'EnumOther Value
- | PostChargesChargeRefundsRequestBodyReason'EnumTyped String
- | PostChargesChargeRefundsRequestBodyReason'EnumStringDuplicate
- | PostChargesChargeRefundsRequestBodyReason'EnumStringFraudulent
- | PostChargesChargeRefundsRequestBodyReason'EnumStringRequestedByCustomer
- data PostChargesChargeRefundsResponse
Documentation
postChargesChargeRefunds Source #
Arguments
| :: (MonadHTTP m, SecurityScheme s) | |
| => Configuration s | The configuration to use in the request |
| -> String | charge | Constraints: Maximum length of 5000 |
| -> PostChargesChargeRefundsRequestBody | The request body to send |
| -> m (Either HttpException (Response PostChargesChargeRefundsResponse)) | Monad containing the result of the operation |
POST /v1/charges/{charge}/refunds<p>Create a refund.</p>
postChargesChargeRefundsRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> PostChargesChargeRefundsRequestBody -> m (Either HttpException (Response ByteString)) Source #
POST /v1/charges/{charge}/refundsThe same as postChargesChargeRefunds but returns the raw ByteString
postChargesChargeRefundsM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> PostChargesChargeRefundsRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response PostChargesChargeRefundsResponse)) Source #
POST /v1/charges/{charge}/refundsMonadic version of postChargesChargeRefunds (use with runWithConfiguration)
postChargesChargeRefundsRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> PostChargesChargeRefundsRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString)) Source #
POST /v1/charges/{charge}/refundsMonadic version of postChargesChargeRefundsRaw (use with runWithConfiguration)
data PostChargesChargeRefundsRequestBody Source #
Defines the data type for the schema postChargesChargeRefundsRequestBody
Constructors
| PostChargesChargeRefundsRequestBody | |
Fields
| |
Instances
data PostChargesChargeRefundsRequestBodyMetadata' Source #
Defines the data type for the schema postChargesChargeRefundsRequestBodyMetadata'
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`.
Constructors
| PostChargesChargeRefundsRequestBodyMetadata' | |
data PostChargesChargeRefundsRequestBodyReason' Source #
Defines the enum schema postChargesChargeRefundsRequestBodyReason'
Constructors
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.
Constructors
| PostChargesChargeRefundsResponseError String | Means either no matching case available or a parse error |
| PostChargesChargeRefundsResponse200 Refund | Successful response. |
| PostChargesChargeRefundsResponseDefault Error | Error response. |