Safe Haskell | None |
---|---|
Language | Haskell2010 |
Contains the different functions to run the operation getCheckoutSessionsSession
Synopsis
- getCheckoutSessionsSession :: forall m. MonadHTTP m => GetCheckoutSessionsSessionParameters -> StripeT m (Response GetCheckoutSessionsSessionResponse)
- data GetCheckoutSessionsSessionParameters = GetCheckoutSessionsSessionParameters {}
- mkGetCheckoutSessionsSessionParameters :: Text -> GetCheckoutSessionsSessionParameters
- data GetCheckoutSessionsSessionResponse
Documentation
getCheckoutSessionsSession Source #
:: forall m. MonadHTTP m | |
=> GetCheckoutSessionsSessionParameters | Contains all available parameters of this operation (query and path parameters) |
-> StripeT m (Response GetCheckoutSessionsSessionResponse) | Monadic computation which returns the result of the operation |
GET /v1/checkout/sessions/{session}
<p>Retrieves a Session object.</p>
data GetCheckoutSessionsSessionParameters Source #
Defines the object schema located at paths./v1/checkout/sessions/{session}.GET.parameters
in the specification.
GetCheckoutSessionsSessionParameters | |
|
mkGetCheckoutSessionsSessionParameters Source #
Create a new GetCheckoutSessionsSessionParameters
with all required fields.
data GetCheckoutSessionsSessionResponse Source #
Represents a response of the operation getCheckoutSessionsSession
.
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), GetCheckoutSessionsSessionResponseError
is used.
GetCheckoutSessionsSessionResponseError String | Means either no matching case available or a parse error |
GetCheckoutSessionsSessionResponse200 Checkout'session | Successful response. |
GetCheckoutSessionsSessionResponseDefault Error | Error response. |