stripeapi-2.0.0.1: Stripe-Library
Safe HaskellNone
LanguageHaskell2010

StripeAPI.Operations.PostTransfersIdReversals

Description

Contains the different functions to run the operation postTransfersIdReversals

Synopsis

Documentation

postTransfersIdReversals Source #

Arguments

:: forall m. MonadHTTP m 
=> Text

id | Constraints: Maximum length of 5000

-> Maybe PostTransfersIdReversalsRequestBody

The request body to send

-> ClientT m (Response PostTransfersIdReversalsResponse)

Monadic computation which returns the result of the operation

POST /v1/transfers/{id}/reversals

<p>When you create a new reversal, you must specify a transfer to create it on.</p>

<p>When reversing transfers, you can optionally reverse part of the transfer. You can do so as many times as you wish until the entire transfer has been reversed.</p>

<p>Once entirely reversed, a transfer can’t be reversed again. This method will return an error when called on an already-reversed transfer, or when trying to reverse more money than is left on a transfer.</p>

data PostTransfersIdReversalsRequestBody Source #

Defines the object schema located at paths./v1/transfers/{id}/reversals.POST.requestBody.content.application/x-www-form-urlencoded.schema in the specification.

Constructors

PostTransfersIdReversalsRequestBody 

Fields

data PostTransfersIdReversalsRequestBodyMetadata'Variants Source #

Defines the oneOf schema located at paths./v1/transfers/{id}/reversals.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`.

Instances

Instances details
Eq PostTransfersIdReversalsRequestBodyMetadata'Variants Source # 
Instance details

Defined in StripeAPI.Operations.PostTransfersIdReversals

Show PostTransfersIdReversalsRequestBodyMetadata'Variants Source # 
Instance details

Defined in StripeAPI.Operations.PostTransfersIdReversals

ToJSON PostTransfersIdReversalsRequestBodyMetadata'Variants Source # 
Instance details

Defined in StripeAPI.Operations.PostTransfersIdReversals

FromJSON PostTransfersIdReversalsRequestBodyMetadata'Variants Source # 
Instance details

Defined in StripeAPI.Operations.PostTransfersIdReversals

data PostTransfersIdReversalsResponse Source #

Represents a response of the operation postTransfersIdReversals.

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), PostTransfersIdReversalsResponseError is used.

Constructors

PostTransfersIdReversalsResponseError String

Means either no matching case available or a parse error

PostTransfersIdReversalsResponse200 TransferReversal

Successful response.

PostTransfersIdReversalsResponseDefault Error

Error response.