Safe Haskell | None |
---|---|
Language | Haskell2010 |
Contains the different functions to run the operation get3dSecureThreeDSecure
Synopsis
- get3dSecureThreeDSecure :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> Maybe String -> String -> Get3dSecureThreeDSecureRequestBody -> m (Either HttpException (Response Get3dSecureThreeDSecureResponse))
- get3dSecureThreeDSecureRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> Maybe String -> String -> Get3dSecureThreeDSecureRequestBody -> m (Either HttpException (Response ByteString))
- get3dSecureThreeDSecureM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe String -> String -> Get3dSecureThreeDSecureRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response Get3dSecureThreeDSecureResponse))
- get3dSecureThreeDSecureRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe String -> String -> Get3dSecureThreeDSecureRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString))
- data Get3dSecureThreeDSecureRequestBody = Get3dSecureThreeDSecureRequestBody {
- data Get3dSecureThreeDSecureResponse
Documentation
get3dSecureThreeDSecure Source #
:: (MonadHTTP m, SecurityScheme s) | |
=> Configuration s | The configuration to use in the request |
-> Maybe String | expand: Specifies which fields in the response should be expanded. |
-> String | three_d_secure | Constraints: Maximum length of 5000 |
-> Get3dSecureThreeDSecureRequestBody | The request body to send |
-> m (Either HttpException (Response Get3dSecureThreeDSecureResponse)) | Monad containing the result of the operation |
GET /v1/3d_secure/{three_d_secure}
<p>Retrieves a 3D Secure object.</p>
get3dSecureThreeDSecureRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> Maybe String -> String -> Get3dSecureThreeDSecureRequestBody -> m (Either HttpException (Response ByteString)) Source #
GET /v1/3d_secure/{three_d_secure}
The same as get3dSecureThreeDSecure
but returns the raw ByteString
get3dSecureThreeDSecureM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe String -> String -> Get3dSecureThreeDSecureRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response Get3dSecureThreeDSecureResponse)) Source #
GET /v1/3d_secure/{three_d_secure}
Monadic version of get3dSecureThreeDSecure
(use with runWithConfiguration
)
get3dSecureThreeDSecureRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe String -> String -> Get3dSecureThreeDSecureRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString)) Source #
GET /v1/3d_secure/{three_d_secure}
Monadic version of get3dSecureThreeDSecureRaw
(use with runWithConfiguration
)
data Get3dSecureThreeDSecureRequestBody Source #
Defines the data type for the schema get3dSecureThreeDSecureRequestBody
data Get3dSecureThreeDSecureResponse Source #
Represents a response of the operation get3dSecureThreeDSecure
.
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), Get3dSecureThreeDSecureResponseError
is used.
Get3dSecureThreeDSecureResponseError String | Means either no matching case available or a parse error |
Get3dSecureThreeDSecureResponse200 ThreeDSecure | Successful response. |
Get3dSecureThreeDSecureResponseDefault Error | Error response. |