Safe Haskell | None |
---|---|
Language | Haskell2010 |
Contains the different functions to run the operation getTaxCodesId
Synopsis
- getTaxCodesId :: forall m. MonadHTTP m => GetTaxCodesIdParameters -> ClientT m (Response GetTaxCodesIdResponse)
- data GetTaxCodesIdParameters = GetTaxCodesIdParameters {}
- mkGetTaxCodesIdParameters :: Text -> GetTaxCodesIdParameters
- data GetTaxCodesIdResponse
Documentation
:: forall m. MonadHTTP m | |
=> GetTaxCodesIdParameters | Contains all available parameters of this operation (query and path parameters) |
-> ClientT m (Response GetTaxCodesIdResponse) | Monadic computation which returns the result of the operation |
GET /v1/tax_codes/{id}
<p>Retrieves the details of an existing tax code. Supply the unique tax code ID and Stripe will return the corresponding tax code information.</p>
data GetTaxCodesIdParameters Source #
Defines the object schema located at paths./v1/tax_codes/{id}.GET.parameters
in the specification.
GetTaxCodesIdParameters | |
|
Instances
Eq GetTaxCodesIdParameters Source # | |
Defined in StripeAPI.Operations.GetTaxCodesId | |
Show GetTaxCodesIdParameters Source # | |
Defined in StripeAPI.Operations.GetTaxCodesId showsPrec :: Int -> GetTaxCodesIdParameters -> ShowS # show :: GetTaxCodesIdParameters -> String # showList :: [GetTaxCodesIdParameters] -> ShowS # | |
ToJSON GetTaxCodesIdParameters Source # | |
Defined in StripeAPI.Operations.GetTaxCodesId | |
FromJSON GetTaxCodesIdParameters Source # | |
Defined in StripeAPI.Operations.GetTaxCodesId |
mkGetTaxCodesIdParameters Source #
Create a new GetTaxCodesIdParameters
with all required fields.
data GetTaxCodesIdResponse Source #
Represents a response of the operation getTaxCodesId
.
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), GetTaxCodesIdResponseError
is used.
GetTaxCodesIdResponseError String | Means either no matching case available or a parse error |
GetTaxCodesIdResponse200 TaxCode | Successful response. |
GetTaxCodesIdResponseDefault Error | Error response. |
Instances
Eq GetTaxCodesIdResponse Source # | |
Defined in StripeAPI.Operations.GetTaxCodesId (==) :: GetTaxCodesIdResponse -> GetTaxCodesIdResponse -> Bool # (/=) :: GetTaxCodesIdResponse -> GetTaxCodesIdResponse -> Bool # | |
Show GetTaxCodesIdResponse Source # | |
Defined in StripeAPI.Operations.GetTaxCodesId showsPrec :: Int -> GetTaxCodesIdResponse -> ShowS # show :: GetTaxCodesIdResponse -> String # showList :: [GetTaxCodesIdResponse] -> ShowS # |