Safe Haskell | None |
---|---|
Language | Haskell2010 |
StripeAPI.Operations.PostRefunds
Description
Contains the different functions to run the operation postRefunds
Synopsis
- postRefunds :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> Maybe PostRefundsRequestBody -> m (Either HttpException (Response PostRefundsResponse))
- postRefundsRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> Maybe PostRefundsRequestBody -> m (Either HttpException (Response ByteString))
- postRefundsM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe PostRefundsRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response PostRefundsResponse))
- postRefundsRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe PostRefundsRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString))
- data PostRefundsRequestBody = PostRefundsRequestBody {
- postRefundsRequestBodyAmount :: Maybe Integer
- postRefundsRequestBodyCharge :: Maybe Text
- postRefundsRequestBodyExpand :: Maybe ([] Text)
- postRefundsRequestBodyMetadata :: Maybe PostRefundsRequestBodyMetadata'
- postRefundsRequestBodyPaymentIntent :: Maybe Text
- postRefundsRequestBodyReason :: Maybe PostRefundsRequestBodyReason'
- postRefundsRequestBodyRefundApplicationFee :: Maybe Bool
- postRefundsRequestBodyReverseTransfer :: Maybe Bool
- data PostRefundsRequestBodyMetadata' = PostRefundsRequestBodyMetadata' {
- data PostRefundsRequestBodyReason'
- data PostRefundsResponse
Documentation
Arguments
:: (MonadHTTP m, SecurityScheme s) | |
=> Configuration s | The configuration to use in the request |
-> Maybe PostRefundsRequestBody | The request body to send |
-> m (Either HttpException (Response PostRefundsResponse)) | Monad containing the result of the operation |
POST /v1/refunds
<p>Create a refund.</p>
postRefundsRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> Maybe PostRefundsRequestBody -> m (Either HttpException (Response ByteString)) Source #
POST /v1/refunds
The same as postRefunds
but returns the raw ByteString
postRefundsM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe PostRefundsRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response PostRefundsResponse)) Source #
POST /v1/refunds
Monadic version of postRefunds
(use with runWithConfiguration
)
postRefundsRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe PostRefundsRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString)) Source #
POST /v1/refunds
Monadic version of postRefundsRaw
(use with runWithConfiguration
)
data PostRefundsRequestBody Source #
Defines the data type for the schema postRefundsRequestBody
Constructors
PostRefundsRequestBody | |
Fields
|
Instances
Eq PostRefundsRequestBody Source # | |
Defined in StripeAPI.Operations.PostRefunds Methods (==) :: PostRefundsRequestBody -> PostRefundsRequestBody -> Bool # (/=) :: PostRefundsRequestBody -> PostRefundsRequestBody -> Bool # | |
Show PostRefundsRequestBody Source # | |
Defined in StripeAPI.Operations.PostRefunds Methods showsPrec :: Int -> PostRefundsRequestBody -> ShowS # show :: PostRefundsRequestBody -> String # showList :: [PostRefundsRequestBody] -> ShowS # | |
ToJSON PostRefundsRequestBody Source # | |
Defined in StripeAPI.Operations.PostRefunds Methods toJSON :: PostRefundsRequestBody -> Value # toEncoding :: PostRefundsRequestBody -> Encoding # toJSONList :: [PostRefundsRequestBody] -> Value # | |
FromJSON PostRefundsRequestBody Source # | |
Defined in StripeAPI.Operations.PostRefunds Methods parseJSON :: Value -> Parser PostRefundsRequestBody # parseJSONList :: Value -> Parser [PostRefundsRequestBody] # |
data PostRefundsRequestBodyMetadata' Source #
Defines the data type for the schema postRefundsRequestBodyMetadata'
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
PostRefundsRequestBodyMetadata' | |
Instances
data PostRefundsRequestBodyReason' Source #
Defines the enum schema postRefundsRequestBodyReason'
Constructors
Instances
Eq PostRefundsRequestBodyReason' Source # | |
Defined in StripeAPI.Operations.PostRefunds | |
Show PostRefundsRequestBodyReason' Source # | |
Defined in StripeAPI.Operations.PostRefunds Methods showsPrec :: Int -> PostRefundsRequestBodyReason' -> ShowS # show :: PostRefundsRequestBodyReason' -> String # showList :: [PostRefundsRequestBodyReason'] -> ShowS # | |
ToJSON PostRefundsRequestBodyReason' Source # | |
Defined in StripeAPI.Operations.PostRefunds Methods toJSON :: PostRefundsRequestBodyReason' -> Value # toEncoding :: PostRefundsRequestBodyReason' -> Encoding # toJSONList :: [PostRefundsRequestBodyReason'] -> Value # toEncodingList :: [PostRefundsRequestBodyReason'] -> Encoding # | |
FromJSON PostRefundsRequestBodyReason' Source # | |
Defined in StripeAPI.Operations.PostRefunds Methods parseJSON :: Value -> Parser PostRefundsRequestBodyReason' # parseJSONList :: Value -> Parser [PostRefundsRequestBodyReason'] # |
data PostRefundsResponse Source #
Represents a response of the operation postRefunds
.
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), PostRefundsResponseError
is used.
Constructors
PostRefundsResponseError String | Means either no matching case available or a parse error |
PostRefundsResponse200 Refund | Successful response. |
PostRefundsResponseDefault Error | Error response. |
Instances
Eq PostRefundsResponse Source # | |
Defined in StripeAPI.Operations.PostRefunds Methods (==) :: PostRefundsResponse -> PostRefundsResponse -> Bool # (/=) :: PostRefundsResponse -> PostRefundsResponse -> Bool # | |
Show PostRefundsResponse Source # | |
Defined in StripeAPI.Operations.PostRefunds Methods showsPrec :: Int -> PostRefundsResponse -> ShowS # show :: PostRefundsResponse -> String # showList :: [PostRefundsResponse] -> ShowS # |