Safe Haskell | None |
---|---|
Language | Haskell2010 |
StripeAPI.Operations.GetRefunds
Description
Contains the different functions to run the operation getRefunds
Synopsis
- getRefunds :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> Maybe String -> Maybe String -> Maybe String -> Maybe String -> Maybe Integer -> Maybe String -> Maybe String -> GetRefundsRequestBody -> m (Either HttpException (Response GetRefundsResponse))
- getRefundsRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> Maybe String -> Maybe String -> Maybe String -> Maybe String -> Maybe Integer -> Maybe String -> Maybe String -> GetRefundsRequestBody -> m (Either HttpException (Response ByteString))
- getRefundsM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe String -> Maybe String -> Maybe String -> Maybe String -> Maybe Integer -> Maybe String -> Maybe String -> GetRefundsRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response GetRefundsResponse))
- getRefundsRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe String -> Maybe String -> Maybe String -> Maybe String -> Maybe Integer -> Maybe String -> Maybe String -> GetRefundsRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString))
- data GetRefundsRequestBody = GetRefundsRequestBody {
- data GetRefundsResponse
- data GetRefundsResponseBody200 = GetRefundsResponseBody200 {}
- data GetRefundsResponseBody200Object'
Documentation
Arguments
:: (MonadHTTP m, SecurityScheme s) | |
=> Configuration s | The configuration to use in the request |
-> Maybe String | charge: Only return refunds for the charge specified by this charge ID. |
-> Maybe String | created |
-> Maybe String | ending_before: A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with `obj_bar`, your subsequent call can include `ending_before=obj_bar` in order to fetch the previous page of the list. |
-> Maybe String | expand: Specifies which fields in the response should be expanded. |
-> Maybe Integer | limit: A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10. |
-> Maybe String | payment_intent: Only return refunds for the PaymentIntent specified by this ID. | Constraints: Maximum length of 5000 |
-> Maybe String | starting_after: A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with `obj_foo`, your subsequent call can include `starting_after=obj_foo` in order to fetch the next page of the list. |
-> GetRefundsRequestBody | The request body to send |
-> m (Either HttpException (Response GetRefundsResponse)) | Monad containing the result of the operation |
GET /v1/refunds
<p>Returns a list of all refunds you’ve previously created. The refunds are returned in sorted order, with the most recent refunds appearing first. For convenience, the 10 most recent refunds are always available by default on the charge object.</p>
getRefundsRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> Maybe String -> Maybe String -> Maybe String -> Maybe String -> Maybe Integer -> Maybe String -> Maybe String -> GetRefundsRequestBody -> m (Either HttpException (Response ByteString)) Source #
GET /v1/refunds
The same as getRefunds
but returns the raw ByteString
getRefundsM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe String -> Maybe String -> Maybe String -> Maybe String -> Maybe Integer -> Maybe String -> Maybe String -> GetRefundsRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response GetRefundsResponse)) Source #
GET /v1/refunds
Monadic version of getRefunds
(use with runWithConfiguration
)
getRefundsRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe String -> Maybe String -> Maybe String -> Maybe String -> Maybe Integer -> Maybe String -> Maybe String -> GetRefundsRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString)) Source #
GET /v1/refunds
Monadic version of getRefundsRaw
(use with runWithConfiguration
)
data GetRefundsRequestBody Source #
Defines the data type for the schema getRefundsRequestBody
Constructors
GetRefundsRequestBody | |
Instances
Eq GetRefundsRequestBody Source # | |
Defined in StripeAPI.Operations.GetRefunds Methods (==) :: GetRefundsRequestBody -> GetRefundsRequestBody -> Bool # (/=) :: GetRefundsRequestBody -> GetRefundsRequestBody -> Bool # | |
Show GetRefundsRequestBody Source # | |
Defined in StripeAPI.Operations.GetRefunds Methods showsPrec :: Int -> GetRefundsRequestBody -> ShowS # show :: GetRefundsRequestBody -> String # showList :: [GetRefundsRequestBody] -> ShowS # | |
ToJSON GetRefundsRequestBody Source # | |
Defined in StripeAPI.Operations.GetRefunds Methods toJSON :: GetRefundsRequestBody -> Value # toEncoding :: GetRefundsRequestBody -> Encoding # toJSONList :: [GetRefundsRequestBody] -> Value # toEncodingList :: [GetRefundsRequestBody] -> Encoding # | |
FromJSON GetRefundsRequestBody Source # | |
Defined in StripeAPI.Operations.GetRefunds Methods parseJSON :: Value -> Parser GetRefundsRequestBody # parseJSONList :: Value -> Parser [GetRefundsRequestBody] # |
data GetRefundsResponse Source #
Represents a response of the operation getRefunds
.
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), GetRefundsResponseError
is used.
Constructors
GetRefundsResponseError String | Means either no matching case available or a parse error |
GetRefundsResponse200 GetRefundsResponseBody200 | Successful response. |
GetRefundsResponseDefault Error | Error response. |
Instances
Eq GetRefundsResponse Source # | |
Defined in StripeAPI.Operations.GetRefunds Methods (==) :: GetRefundsResponse -> GetRefundsResponse -> Bool # (/=) :: GetRefundsResponse -> GetRefundsResponse -> Bool # | |
Show GetRefundsResponse Source # | |
Defined in StripeAPI.Operations.GetRefunds Methods showsPrec :: Int -> GetRefundsResponse -> ShowS # show :: GetRefundsResponse -> String # showList :: [GetRefundsResponse] -> ShowS # |
data GetRefundsResponseBody200 Source #
Defines the data type for the schema GetRefundsResponseBody200
Constructors
GetRefundsResponseBody200 | |
Fields
|
Instances
Eq GetRefundsResponseBody200 Source # | |
Defined in StripeAPI.Operations.GetRefunds Methods (==) :: GetRefundsResponseBody200 -> GetRefundsResponseBody200 -> Bool # (/=) :: GetRefundsResponseBody200 -> GetRefundsResponseBody200 -> Bool # | |
Show GetRefundsResponseBody200 Source # | |
Defined in StripeAPI.Operations.GetRefunds Methods showsPrec :: Int -> GetRefundsResponseBody200 -> ShowS # show :: GetRefundsResponseBody200 -> String # showList :: [GetRefundsResponseBody200] -> ShowS # | |
ToJSON GetRefundsResponseBody200 Source # | |
Defined in StripeAPI.Operations.GetRefunds Methods toJSON :: GetRefundsResponseBody200 -> Value # toEncoding :: GetRefundsResponseBody200 -> Encoding # toJSONList :: [GetRefundsResponseBody200] -> Value # | |
FromJSON GetRefundsResponseBody200 Source # | |
Defined in StripeAPI.Operations.GetRefunds Methods parseJSON :: Value -> Parser GetRefundsResponseBody200 # parseJSONList :: Value -> Parser [GetRefundsResponseBody200] # |
data GetRefundsResponseBody200Object' Source #
Defines the enum schema GetRefundsResponseBody200Object'
String representing the object's type. Objects of the same type share the same value. Always has the value `list`.
Constructors
GetRefundsResponseBody200Object'EnumOther Value | |
GetRefundsResponseBody200Object'EnumTyped String | |
GetRefundsResponseBody200Object'EnumStringList |