Safe Haskell | None |
---|---|
Language | Haskell2010 |
Contains the different functions to run the operation getDisputes
Synopsis
- getDisputes :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> Maybe String -> Maybe String -> Maybe String -> Maybe String -> Maybe Integer -> Maybe String -> Maybe String -> GetDisputesRequestBody -> m (Either HttpException (Response GetDisputesResponse))
- getDisputesRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> Maybe String -> Maybe String -> Maybe String -> Maybe String -> Maybe Integer -> Maybe String -> Maybe String -> GetDisputesRequestBody -> m (Either HttpException (Response ByteString))
- getDisputesM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe String -> Maybe String -> Maybe String -> Maybe String -> Maybe Integer -> Maybe String -> Maybe String -> GetDisputesRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response GetDisputesResponse))
- getDisputesRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe String -> Maybe String -> Maybe String -> Maybe String -> Maybe Integer -> Maybe String -> Maybe String -> GetDisputesRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString))
- data GetDisputesRequestBody = GetDisputesRequestBody {
- data GetDisputesResponse
- data GetDisputesResponseBody200 = GetDisputesResponseBody200 {}
- data GetDisputesResponseBody200Object'
Documentation
:: (MonadHTTP m, SecurityScheme s) | |
=> Configuration s | The configuration to use in the request |
-> Maybe String | charge: Only return disputes associated to the charge specified by this charge ID. | Constraints: Maximum length of 5000 |
-> 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. | Constraints: Maximum length of 5000 |
-> 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 disputes associated to the PaymentIntent specified by this PaymentIntent 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. | Constraints: Maximum length of 5000 |
-> GetDisputesRequestBody | The request body to send |
-> m (Either HttpException (Response GetDisputesResponse)) | Monad containing the result of the operation |
GET /v1/disputes
<p>Returns a list of your disputes.</p>
getDisputesRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> Maybe String -> Maybe String -> Maybe String -> Maybe String -> Maybe Integer -> Maybe String -> Maybe String -> GetDisputesRequestBody -> m (Either HttpException (Response ByteString)) Source #
GET /v1/disputes
The same as getDisputes
but returns the raw ByteString
getDisputesM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe String -> Maybe String -> Maybe String -> Maybe String -> Maybe Integer -> Maybe String -> Maybe String -> GetDisputesRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response GetDisputesResponse)) Source #
GET /v1/disputes
Monadic version of getDisputes
(use with runWithConfiguration
)
getDisputesRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe String -> Maybe String -> Maybe String -> Maybe String -> Maybe Integer -> Maybe String -> Maybe String -> GetDisputesRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString)) Source #
GET /v1/disputes
Monadic version of getDisputesRaw
(use with runWithConfiguration
)
data GetDisputesRequestBody Source #
Defines the data type for the schema getDisputesRequestBody
Instances
Eq GetDisputesRequestBody Source # | |
Defined in StripeAPI.Operations.GetDisputes | |
Show GetDisputesRequestBody Source # | |
Defined in StripeAPI.Operations.GetDisputes showsPrec :: Int -> GetDisputesRequestBody -> ShowS # show :: GetDisputesRequestBody -> String # showList :: [GetDisputesRequestBody] -> ShowS # | |
ToJSON GetDisputesRequestBody Source # | |
Defined in StripeAPI.Operations.GetDisputes toJSON :: GetDisputesRequestBody -> Value # toEncoding :: GetDisputesRequestBody -> Encoding # toJSONList :: [GetDisputesRequestBody] -> Value # | |
FromJSON GetDisputesRequestBody Source # | |
Defined in StripeAPI.Operations.GetDisputes |
data GetDisputesResponse Source #
Represents a response of the operation getDisputes
.
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), GetDisputesResponseError
is used.
GetDisputesResponseError String | Means either no matching case available or a parse error |
GetDisputesResponse200 GetDisputesResponseBody200 | Successful response. |
GetDisputesResponseDefault Error | Error response. |
Instances
Eq GetDisputesResponse Source # | |
Defined in StripeAPI.Operations.GetDisputes (==) :: GetDisputesResponse -> GetDisputesResponse -> Bool # (/=) :: GetDisputesResponse -> GetDisputesResponse -> Bool # | |
Show GetDisputesResponse Source # | |
Defined in StripeAPI.Operations.GetDisputes showsPrec :: Int -> GetDisputesResponse -> ShowS # show :: GetDisputesResponse -> String # showList :: [GetDisputesResponse] -> ShowS # |
data GetDisputesResponseBody200 Source #
Defines the data type for the schema GetDisputesResponseBody200
GetDisputesResponseBody200 | |
|
Instances
data GetDisputesResponseBody200Object' Source #
Defines the enum schema GetDisputesResponseBody200Object'
String representing the object's type. Objects of the same type share the same value. Always has the value `list`.
GetDisputesResponseBody200Object'EnumOther Value | |
GetDisputesResponseBody200Object'EnumTyped String | |
GetDisputesResponseBody200Object'EnumStringList |