Safe Haskell | None |
---|---|
Language | Haskell2010 |
Contains the different functions to run the operation getCustomersCustomerTaxIdsId
Synopsis
- getCustomersCustomerTaxIdsId :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> Maybe String -> String -> GetCustomersCustomerTaxIdsIdRequestBody -> m (Either HttpException (Response GetCustomersCustomerTaxIdsIdResponse))
- getCustomersCustomerTaxIdsIdRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> Maybe String -> String -> GetCustomersCustomerTaxIdsIdRequestBody -> m (Either HttpException (Response ByteString))
- getCustomersCustomerTaxIdsIdM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> Maybe String -> String -> GetCustomersCustomerTaxIdsIdRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response GetCustomersCustomerTaxIdsIdResponse))
- getCustomersCustomerTaxIdsIdRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> Maybe String -> String -> GetCustomersCustomerTaxIdsIdRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString))
- data GetCustomersCustomerTaxIdsIdRequestBody = GetCustomersCustomerTaxIdsIdRequestBody {
- data GetCustomersCustomerTaxIdsIdResponse
Documentation
getCustomersCustomerTaxIdsId Source #
:: (MonadHTTP m, SecurityScheme s) | |
=> Configuration s | The configuration to use in the request |
-> String | customer | Constraints: Maximum length of 5000 |
-> Maybe String | expand: Specifies which fields in the response should be expanded. |
-> String | id |
-> GetCustomersCustomerTaxIdsIdRequestBody | The request body to send |
-> m (Either HttpException (Response GetCustomersCustomerTaxIdsIdResponse)) | Monad containing the result of the operation |
GET /v1/customers/{customer}/tax_ids/{id}
<p>Retrieves the <code>TaxID</code> object with the given identifier.</p>
getCustomersCustomerTaxIdsIdRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> Maybe String -> String -> GetCustomersCustomerTaxIdsIdRequestBody -> m (Either HttpException (Response ByteString)) Source #
GET /v1/customers/{customer}/tax_ids/{id}
The same as getCustomersCustomerTaxIdsId
but returns the raw ByteString
getCustomersCustomerTaxIdsIdM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> Maybe String -> String -> GetCustomersCustomerTaxIdsIdRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response GetCustomersCustomerTaxIdsIdResponse)) Source #
GET /v1/customers/{customer}/tax_ids/{id}
Monadic version of getCustomersCustomerTaxIdsId
(use with runWithConfiguration
)
getCustomersCustomerTaxIdsIdRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> Maybe String -> String -> GetCustomersCustomerTaxIdsIdRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString)) Source #
GET /v1/customers/{customer}/tax_ids/{id}
Monadic version of getCustomersCustomerTaxIdsIdRaw
(use with runWithConfiguration
)
data GetCustomersCustomerTaxIdsIdRequestBody Source #
Defines the data type for the schema getCustomersCustomerTaxIdsIdRequestBody
data GetCustomersCustomerTaxIdsIdResponse Source #
Represents a response of the operation getCustomersCustomerTaxIdsId
.
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), GetCustomersCustomerTaxIdsIdResponseError
is used.
GetCustomersCustomerTaxIdsIdResponseError String | Means either no matching case available or a parse error |
GetCustomersCustomerTaxIdsIdResponse200 TaxId | Successful response. |
GetCustomersCustomerTaxIdsIdResponseDefault Error | Error response. |