Safe Haskell | None |
---|---|
Language | Haskell2010 |
Contains the different functions to run the operation deleteCustomersCustomerTaxIdsId
Synopsis
- deleteCustomersCustomerTaxIdsId :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> String -> DeleteCustomersCustomerTaxIdsIdRequestBody -> m (Either HttpException (Response DeleteCustomersCustomerTaxIdsIdResponse))
- deleteCustomersCustomerTaxIdsIdRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> String -> DeleteCustomersCustomerTaxIdsIdRequestBody -> m (Either HttpException (Response ByteString))
- deleteCustomersCustomerTaxIdsIdM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> String -> DeleteCustomersCustomerTaxIdsIdRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response DeleteCustomersCustomerTaxIdsIdResponse))
- deleteCustomersCustomerTaxIdsIdRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> String -> DeleteCustomersCustomerTaxIdsIdRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString))
- data DeleteCustomersCustomerTaxIdsIdRequestBody = DeleteCustomersCustomerTaxIdsIdRequestBody {
- data DeleteCustomersCustomerTaxIdsIdResponse
Documentation
deleteCustomersCustomerTaxIdsId Source #
:: (MonadHTTP m, SecurityScheme s) | |
=> Configuration s | The configuration to use in the request |
-> String | customer | Constraints: Maximum length of 5000 |
-> String | id |
-> DeleteCustomersCustomerTaxIdsIdRequestBody | The request body to send |
-> m (Either HttpException (Response DeleteCustomersCustomerTaxIdsIdResponse)) | Monad containing the result of the operation |
DELETE /v1/customers/{customer}/tax_ids/{id}
<p>Deletes an existing <code>TaxID</code> object.</p>
deleteCustomersCustomerTaxIdsIdRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> String -> DeleteCustomersCustomerTaxIdsIdRequestBody -> m (Either HttpException (Response ByteString)) Source #
DELETE /v1/customers/{customer}/tax_ids/{id}
The same as deleteCustomersCustomerTaxIdsId
but returns the raw ByteString
deleteCustomersCustomerTaxIdsIdM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> String -> DeleteCustomersCustomerTaxIdsIdRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response DeleteCustomersCustomerTaxIdsIdResponse)) Source #
DELETE /v1/customers/{customer}/tax_ids/{id}
Monadic version of deleteCustomersCustomerTaxIdsId
(use with runWithConfiguration
)
deleteCustomersCustomerTaxIdsIdRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> String -> DeleteCustomersCustomerTaxIdsIdRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString)) Source #
DELETE /v1/customers/{customer}/tax_ids/{id}
Monadic version of deleteCustomersCustomerTaxIdsIdRaw
(use with runWithConfiguration
)
data DeleteCustomersCustomerTaxIdsIdRequestBody Source #
Defines the data type for the schema deleteCustomersCustomerTaxIdsIdRequestBody
Instances
data DeleteCustomersCustomerTaxIdsIdResponse Source #
Represents a response of the operation deleteCustomersCustomerTaxIdsId
.
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), DeleteCustomersCustomerTaxIdsIdResponseError
is used.
DeleteCustomersCustomerTaxIdsIdResponseError String | Means either no matching case available or a parse error |
DeleteCustomersCustomerTaxIdsIdResponse200 DeletedTaxId | Successful response. |
DeleteCustomersCustomerTaxIdsIdResponseDefault Error | Error response. |