Safe Haskell | None |
---|---|
Language | Haskell2010 |
Contains the different functions to run the operation getSubscriptionsSubscriptionExposedId
Synopsis
- getSubscriptionsSubscriptionExposedId :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> Maybe String -> String -> GetSubscriptionsSubscriptionExposedIdRequestBody -> m (Either HttpException (Response GetSubscriptionsSubscriptionExposedIdResponse))
- getSubscriptionsSubscriptionExposedIdRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> Maybe String -> String -> GetSubscriptionsSubscriptionExposedIdRequestBody -> m (Either HttpException (Response ByteString))
- getSubscriptionsSubscriptionExposedIdM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe String -> String -> GetSubscriptionsSubscriptionExposedIdRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response GetSubscriptionsSubscriptionExposedIdResponse))
- getSubscriptionsSubscriptionExposedIdRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe String -> String -> GetSubscriptionsSubscriptionExposedIdRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString))
- data GetSubscriptionsSubscriptionExposedIdRequestBody = GetSubscriptionsSubscriptionExposedIdRequestBody {
- data GetSubscriptionsSubscriptionExposedIdResponse
Documentation
getSubscriptionsSubscriptionExposedId 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 | subscription_exposed_id | Constraints: Maximum length of 5000 |
-> GetSubscriptionsSubscriptionExposedIdRequestBody | The request body to send |
-> m (Either HttpException (Response GetSubscriptionsSubscriptionExposedIdResponse)) | Monad containing the result of the operation |
GET /v1/subscriptions/{subscription_exposed_id}
<p>Retrieves the subscription with the given ID.</p>
getSubscriptionsSubscriptionExposedIdRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> Maybe String -> String -> GetSubscriptionsSubscriptionExposedIdRequestBody -> m (Either HttpException (Response ByteString)) Source #
GET /v1/subscriptions/{subscription_exposed_id}
The same as getSubscriptionsSubscriptionExposedId
but returns the raw ByteString
getSubscriptionsSubscriptionExposedIdM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe String -> String -> GetSubscriptionsSubscriptionExposedIdRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response GetSubscriptionsSubscriptionExposedIdResponse)) Source #
GET /v1/subscriptions/{subscription_exposed_id}
Monadic version of getSubscriptionsSubscriptionExposedId
(use with runWithConfiguration
)
getSubscriptionsSubscriptionExposedIdRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe String -> String -> GetSubscriptionsSubscriptionExposedIdRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString)) Source #
GET /v1/subscriptions/{subscription_exposed_id}
Monadic version of getSubscriptionsSubscriptionExposedIdRaw
(use with runWithConfiguration
)
data GetSubscriptionsSubscriptionExposedIdRequestBody Source #
Defines the data type for the schema getSubscriptionsSubscriptionExposedIdRequestBody
Instances
data GetSubscriptionsSubscriptionExposedIdResponse Source #
Represents a response of the operation getSubscriptionsSubscriptionExposedId
.
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), GetSubscriptionsSubscriptionExposedIdResponseError
is used.
GetSubscriptionsSubscriptionExposedIdResponseError String | Means either no matching case available or a parse error |
GetSubscriptionsSubscriptionExposedIdResponse200 Subscription | Successful response. |
GetSubscriptionsSubscriptionExposedIdResponseDefault Error | Error response. |