Safe Haskell | None |
---|---|
Language | Haskell2010 |
Contains the different functions to run the operation getIssuingDisputesDispute
Synopsis
- getIssuingDisputesDispute :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> Maybe String -> GetIssuingDisputesDisputeRequestBody -> m (Either HttpException (Response GetIssuingDisputesDisputeResponse))
- getIssuingDisputesDisputeRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> Maybe String -> GetIssuingDisputesDisputeRequestBody -> m (Either HttpException (Response ByteString))
- getIssuingDisputesDisputeM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> Maybe String -> GetIssuingDisputesDisputeRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response GetIssuingDisputesDisputeResponse))
- getIssuingDisputesDisputeRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> Maybe String -> GetIssuingDisputesDisputeRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString))
- data GetIssuingDisputesDisputeRequestBody = GetIssuingDisputesDisputeRequestBody {
- data GetIssuingDisputesDisputeResponse
Documentation
getIssuingDisputesDispute Source #
:: (MonadHTTP m, SecurityScheme s) | |
=> Configuration s | The configuration to use in the request |
-> String | dispute | Constraints: Maximum length of 5000 |
-> Maybe String | expand: Specifies which fields in the response should be expanded. |
-> GetIssuingDisputesDisputeRequestBody | The request body to send |
-> m (Either HttpException (Response GetIssuingDisputesDisputeResponse)) | Monad containing the result of the operation |
GET /v1/issuing/disputes/{dispute}
<p>Retrieves an Issuing <code>Dispute</code> object.</p>
getIssuingDisputesDisputeRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> Maybe String -> GetIssuingDisputesDisputeRequestBody -> m (Either HttpException (Response ByteString)) Source #
GET /v1/issuing/disputes/{dispute}
The same as getIssuingDisputesDispute
but returns the raw ByteString
getIssuingDisputesDisputeM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> Maybe String -> GetIssuingDisputesDisputeRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response GetIssuingDisputesDisputeResponse)) Source #
GET /v1/issuing/disputes/{dispute}
Monadic version of getIssuingDisputesDispute
(use with runWithConfiguration
)
getIssuingDisputesDisputeRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> Maybe String -> GetIssuingDisputesDisputeRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString)) Source #
GET /v1/issuing/disputes/{dispute}
Monadic version of getIssuingDisputesDisputeRaw
(use with runWithConfiguration
)
data GetIssuingDisputesDisputeRequestBody Source #
Defines the data type for the schema getIssuingDisputesDisputeRequestBody
data GetIssuingDisputesDisputeResponse Source #
Represents a response of the operation getIssuingDisputesDispute
.
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), GetIssuingDisputesDisputeResponseError
is used.
GetIssuingDisputesDisputeResponseError String | Means either no matching case available or a parse error |
GetIssuingDisputesDisputeResponse200 Issuing'dispute | Successful response. |
GetIssuingDisputesDisputeResponseDefault Error | Error response. |