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