Safe Haskell | None |
---|---|
Language | Haskell2010 |
Contains the different functions to run the operation postTaxRatesTaxRate
Synopsis
- postTaxRatesTaxRate :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> PostTaxRatesTaxRateRequestBody -> m (Either HttpException (Response PostTaxRatesTaxRateResponse))
- postTaxRatesTaxRateRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> PostTaxRatesTaxRateRequestBody -> m (Either HttpException (Response ByteString))
- postTaxRatesTaxRateM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> PostTaxRatesTaxRateRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response PostTaxRatesTaxRateResponse))
- postTaxRatesTaxRateRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> PostTaxRatesTaxRateRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString))
- data PostTaxRatesTaxRateRequestBody = PostTaxRatesTaxRateRequestBody {
- postTaxRatesTaxRateRequestBodyActive :: Maybe Bool
- postTaxRatesTaxRateRequestBodyDescription :: Maybe String
- postTaxRatesTaxRateRequestBodyDisplayName :: Maybe String
- postTaxRatesTaxRateRequestBodyExpand :: Maybe ([] String)
- postTaxRatesTaxRateRequestBodyJurisdiction :: Maybe String
- postTaxRatesTaxRateRequestBodyMetadata :: Maybe PostTaxRatesTaxRateRequestBodyMetadata'
- data PostTaxRatesTaxRateRequestBodyMetadata' = PostTaxRatesTaxRateRequestBodyMetadata' {
- data PostTaxRatesTaxRateResponse
Documentation
:: (MonadHTTP m, SecurityScheme s) | |
=> Configuration s | The configuration to use in the request |
-> String | tax_rate | Constraints: Maximum length of 5000 |
-> PostTaxRatesTaxRateRequestBody | The request body to send |
-> m (Either HttpException (Response PostTaxRatesTaxRateResponse)) | Monad containing the result of the operation |
POST /v1/tax_rates/{tax_rate}
<p>Updates an existing tax rate.</p>
postTaxRatesTaxRateRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> PostTaxRatesTaxRateRequestBody -> m (Either HttpException (Response ByteString)) Source #
POST /v1/tax_rates/{tax_rate}
The same as postTaxRatesTaxRate
but returns the raw ByteString
postTaxRatesTaxRateM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> PostTaxRatesTaxRateRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response PostTaxRatesTaxRateResponse)) Source #
POST /v1/tax_rates/{tax_rate}
Monadic version of postTaxRatesTaxRate
(use with runWithConfiguration
)
postTaxRatesTaxRateRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> PostTaxRatesTaxRateRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString)) Source #
POST /v1/tax_rates/{tax_rate}
Monadic version of postTaxRatesTaxRateRaw
(use with runWithConfiguration
)
data PostTaxRatesTaxRateRequestBody Source #
Defines the data type for the schema postTaxRatesTaxRateRequestBody
PostTaxRatesTaxRateRequestBody | |
|
data PostTaxRatesTaxRateRequestBodyMetadata' Source #
Defines the data type for the schema postTaxRatesTaxRateRequestBodyMetadata'
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`.
data PostTaxRatesTaxRateResponse Source #
Represents a response of the operation postTaxRatesTaxRate
.
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), PostTaxRatesTaxRateResponseError
is used.
PostTaxRatesTaxRateResponseError String | Means either no matching case available or a parse error |
PostTaxRatesTaxRateResponse200 TaxRate | Successful response. |
PostTaxRatesTaxRateResponseDefault Error | Error response. |