Safe Haskell | None |
---|---|
Language | Haskell2010 |
Contains the different functions to run the operation getBitcoinReceiversId
Synopsis
- getBitcoinReceiversId :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> Maybe String -> String -> GetBitcoinReceiversIdRequestBody -> m (Either HttpException (Response GetBitcoinReceiversIdResponse))
- getBitcoinReceiversIdRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> Maybe String -> String -> GetBitcoinReceiversIdRequestBody -> m (Either HttpException (Response ByteString))
- getBitcoinReceiversIdM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe String -> String -> GetBitcoinReceiversIdRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response GetBitcoinReceiversIdResponse))
- getBitcoinReceiversIdRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe String -> String -> GetBitcoinReceiversIdRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString))
- data GetBitcoinReceiversIdRequestBody = GetBitcoinReceiversIdRequestBody {
- data GetBitcoinReceiversIdResponse
Documentation
getBitcoinReceiversId 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 | id | Constraints: Maximum length of 5000 |
-> GetBitcoinReceiversIdRequestBody | The request body to send |
-> m (Either HttpException (Response GetBitcoinReceiversIdResponse)) | Monad containing the result of the operation |
GET /v1/bitcoin/receivers/{id}
<p>Retrieves the Bitcoin receiver with the given ID.</p>
getBitcoinReceiversIdRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> Maybe String -> String -> GetBitcoinReceiversIdRequestBody -> m (Either HttpException (Response ByteString)) Source #
GET /v1/bitcoin/receivers/{id}
The same as getBitcoinReceiversId
but returns the raw ByteString
getBitcoinReceiversIdM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe String -> String -> GetBitcoinReceiversIdRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response GetBitcoinReceiversIdResponse)) Source #
GET /v1/bitcoin/receivers/{id}
Monadic version of getBitcoinReceiversId
(use with runWithConfiguration
)
getBitcoinReceiversIdRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe String -> String -> GetBitcoinReceiversIdRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString)) Source #
GET /v1/bitcoin/receivers/{id}
Monadic version of getBitcoinReceiversIdRaw
(use with runWithConfiguration
)
data GetBitcoinReceiversIdRequestBody Source #
Defines the data type for the schema getBitcoinReceiversIdRequestBody
data GetBitcoinReceiversIdResponse Source #
Represents a response of the operation getBitcoinReceiversId
.
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), GetBitcoinReceiversIdResponseError
is used.
GetBitcoinReceiversIdResponseError String | Means either no matching case available or a parse error |
GetBitcoinReceiversIdResponse200 BitcoinReceiver | Successful response. |
GetBitcoinReceiversIdResponseDefault Error | Error response. |