Safe Haskell | None |
---|---|
Language | Haskell2010 |
Contains the different functions to run the operation deleteAccountBankAccountsId
Synopsis
- deleteAccountBankAccountsId :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> DeleteAccountBankAccountsIdRequestBody -> m (Either HttpException (Response DeleteAccountBankAccountsIdResponse))
- deleteAccountBankAccountsIdRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> DeleteAccountBankAccountsIdRequestBody -> m (Either HttpException (Response ByteString))
- deleteAccountBankAccountsIdM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> DeleteAccountBankAccountsIdRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response DeleteAccountBankAccountsIdResponse))
- deleteAccountBankAccountsIdRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> DeleteAccountBankAccountsIdRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString))
- data DeleteAccountBankAccountsIdRequestBody = DeleteAccountBankAccountsIdRequestBody {
- data DeleteAccountBankAccountsIdResponse
Documentation
deleteAccountBankAccountsId Source #
:: (MonadHTTP m, SecurityScheme s) | |
=> Configuration s | The configuration to use in the request |
-> String | id |
-> DeleteAccountBankAccountsIdRequestBody | The request body to send |
-> m (Either HttpException (Response DeleteAccountBankAccountsIdResponse)) | Monad containing the result of the operation |
DELETE /v1/account/bank_accounts/{id}
<p>Delete a specified external account for a given account.</p>
deleteAccountBankAccountsIdRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> DeleteAccountBankAccountsIdRequestBody -> m (Either HttpException (Response ByteString)) Source #
DELETE /v1/account/bank_accounts/{id}
The same as deleteAccountBankAccountsId
but returns the raw ByteString
deleteAccountBankAccountsIdM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> DeleteAccountBankAccountsIdRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response DeleteAccountBankAccountsIdResponse)) Source #
DELETE /v1/account/bank_accounts/{id}
Monadic version of deleteAccountBankAccountsId
(use with runWithConfiguration
)
deleteAccountBankAccountsIdRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> DeleteAccountBankAccountsIdRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString)) Source #
DELETE /v1/account/bank_accounts/{id}
Monadic version of deleteAccountBankAccountsIdRaw
(use with runWithConfiguration
)
data DeleteAccountBankAccountsIdRequestBody Source #
Defines the data type for the schema deleteAccountBankAccountsIdRequestBody
data DeleteAccountBankAccountsIdResponse Source #
Represents a response of the operation deleteAccountBankAccountsId
.
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), DeleteAccountBankAccountsIdResponseError
is used.
DeleteAccountBankAccountsIdResponseError String | Means either no matching case available or a parse error |
DeleteAccountBankAccountsIdResponse200 DeletedExternalAccount | Successful response. |
DeleteAccountBankAccountsIdResponseDefault Error | Error response. |