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