Safe Haskell | None |
---|---|
Language | Haskell2010 |
Contains the different functions to run the operation getApplePayDomainsDomain
Synopsis
- getApplePayDomainsDomain :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> Maybe String -> GetApplePayDomainsDomainRequestBody -> m (Either HttpException (Response GetApplePayDomainsDomainResponse))
- getApplePayDomainsDomainRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> Maybe String -> GetApplePayDomainsDomainRequestBody -> m (Either HttpException (Response ByteString))
- getApplePayDomainsDomainM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> Maybe String -> GetApplePayDomainsDomainRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response GetApplePayDomainsDomainResponse))
- getApplePayDomainsDomainRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> Maybe String -> GetApplePayDomainsDomainRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString))
- data GetApplePayDomainsDomainRequestBody = GetApplePayDomainsDomainRequestBody {
- data GetApplePayDomainsDomainResponse
Documentation
getApplePayDomainsDomain Source #
:: (MonadHTTP m, SecurityScheme s) | |
=> Configuration s | The configuration to use in the request |
-> String | domain | Constraints: Maximum length of 5000 |
-> Maybe String | expand: Specifies which fields in the response should be expanded. |
-> GetApplePayDomainsDomainRequestBody | The request body to send |
-> m (Either HttpException (Response GetApplePayDomainsDomainResponse)) | Monad containing the result of the operation |
GET /v1/apple_pay/domains/{domain}
<p>Retrieve an apple pay domain.</p>
getApplePayDomainsDomainRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> Maybe String -> GetApplePayDomainsDomainRequestBody -> m (Either HttpException (Response ByteString)) Source #
GET /v1/apple_pay/domains/{domain}
The same as getApplePayDomainsDomain
but returns the raw ByteString
getApplePayDomainsDomainM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> Maybe String -> GetApplePayDomainsDomainRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response GetApplePayDomainsDomainResponse)) Source #
GET /v1/apple_pay/domains/{domain}
Monadic version of getApplePayDomainsDomain
(use with runWithConfiguration
)
getApplePayDomainsDomainRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> Maybe String -> GetApplePayDomainsDomainRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString)) Source #
GET /v1/apple_pay/domains/{domain}
Monadic version of getApplePayDomainsDomainRaw
(use with runWithConfiguration
)
data GetApplePayDomainsDomainRequestBody Source #
Defines the data type for the schema getApplePayDomainsDomainRequestBody
data GetApplePayDomainsDomainResponse Source #
Represents a response of the operation getApplePayDomainsDomain
.
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), GetApplePayDomainsDomainResponseError
is used.
GetApplePayDomainsDomainResponseError String | Means either no matching case available or a parse error |
GetApplePayDomainsDomainResponse200 ApplePayDomain | Successful response. |
GetApplePayDomainsDomainResponseDefault Error | Error response. |