Safe Haskell | None |
---|---|
Language | Haskell2010 |
Contains the different functions to run the operation postIssuingAuthorizationsAuthorization
Synopsis
- postIssuingAuthorizationsAuthorization :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> PostIssuingAuthorizationsAuthorizationRequestBody -> m (Either HttpException (Response PostIssuingAuthorizationsAuthorizationResponse))
- postIssuingAuthorizationsAuthorizationRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> PostIssuingAuthorizationsAuthorizationRequestBody -> m (Either HttpException (Response ByteString))
- postIssuingAuthorizationsAuthorizationM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> PostIssuingAuthorizationsAuthorizationRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response PostIssuingAuthorizationsAuthorizationResponse))
- postIssuingAuthorizationsAuthorizationRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> PostIssuingAuthorizationsAuthorizationRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString))
- data PostIssuingAuthorizationsAuthorizationRequestBody = PostIssuingAuthorizationsAuthorizationRequestBody {}
- data PostIssuingAuthorizationsAuthorizationRequestBodyMetadata'OneOf1
- data PostIssuingAuthorizationsAuthorizationRequestBodyMetadata'OneOf2 = PostIssuingAuthorizationsAuthorizationRequestBodyMetadata'OneOf2 {
- data PostIssuingAuthorizationsAuthorizationRequestBodyMetadata'Variants
- = PostIssuingAuthorizationsAuthorizationRequestBodyMetadata'PostIssuingAuthorizationsAuthorizationRequestBodyMetadata'OneOf1 PostIssuingAuthorizationsAuthorizationRequestBodyMetadata'OneOf1
- | PostIssuingAuthorizationsAuthorizationRequestBodyMetadata'PostIssuingAuthorizationsAuthorizationRequestBodyMetadata'OneOf2 PostIssuingAuthorizationsAuthorizationRequestBodyMetadata'OneOf2
- data PostIssuingAuthorizationsAuthorizationResponse
Documentation
postIssuingAuthorizationsAuthorization Source #
:: (MonadHTTP m, SecurityScheme s) | |
=> Configuration s | The configuration to use in the request |
-> String | authorization | Constraints: Maximum length of 5000 |
-> PostIssuingAuthorizationsAuthorizationRequestBody | The request body to send |
-> m (Either HttpException (Response PostIssuingAuthorizationsAuthorizationResponse)) | Monad containing the result of the operation |
POST /v1/issuing/authorizations/{authorization}
<p>Updates the specified Issuing <code>Authorization</code> object by setting the values of the parameters passed. Any parameters not provided will be left unchanged.</p>
postIssuingAuthorizationsAuthorizationRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> PostIssuingAuthorizationsAuthorizationRequestBody -> m (Either HttpException (Response ByteString)) Source #
POST /v1/issuing/authorizations/{authorization}
The same as postIssuingAuthorizationsAuthorization
but returns the raw ByteString
postIssuingAuthorizationsAuthorizationM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> PostIssuingAuthorizationsAuthorizationRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response PostIssuingAuthorizationsAuthorizationResponse)) Source #
POST /v1/issuing/authorizations/{authorization}
Monadic version of postIssuingAuthorizationsAuthorization
(use with runWithConfiguration
)
postIssuingAuthorizationsAuthorizationRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> PostIssuingAuthorizationsAuthorizationRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString)) Source #
POST /v1/issuing/authorizations/{authorization}
Monadic version of postIssuingAuthorizationsAuthorizationRaw
(use with runWithConfiguration
)
data PostIssuingAuthorizationsAuthorizationRequestBody Source #
Defines the data type for the schema postIssuingAuthorizationsAuthorizationRequestBody
PostIssuingAuthorizationsAuthorizationRequestBody | |
|
Instances
data PostIssuingAuthorizationsAuthorizationRequestBodyMetadata'OneOf1 Source #
Defines the enum schema postIssuingAuthorizationsAuthorizationRequestBodyMetadata'OneOf1
Instances
data PostIssuingAuthorizationsAuthorizationRequestBodyMetadata'OneOf2 Source #
Defines the data type for the schema postIssuingAuthorizationsAuthorizationRequestBodyMetadata'OneOf2
Instances
data PostIssuingAuthorizationsAuthorizationRequestBodyMetadata'Variants Source #
Define the one-of schema postIssuingAuthorizationsAuthorizationRequestBodyMetadata'
Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
Instances
data PostIssuingAuthorizationsAuthorizationResponse Source #
Represents a response of the operation postIssuingAuthorizationsAuthorization
.
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), PostIssuingAuthorizationsAuthorizationResponseError
is used.
PostIssuingAuthorizationsAuthorizationResponseError String | Means either no matching case available or a parse error |
PostIssuingAuthorizationsAuthorizationResponse200 Issuing'authorization | Successful response. |
PostIssuingAuthorizationsAuthorizationResponseDefault Error | Error response. |