Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
RecurlyClient.Operations.Get_business_entity
Description
Contains the different functions to run the operation get_business_entity
Synopsis
- get_business_entity :: forall m. MonadHTTP m => ClientT m (Response Get_business_entityResponse)
- data Get_business_entityResponse
- get_business_entityWithConfiguration :: forall m. MonadHTTP m => Configuration -> m (Response Get_business_entityResponse)
- get_business_entityRaw :: forall m. MonadHTTP m => ClientT m (Response ByteString)
- get_business_entityWithConfigurationRaw :: forall m. MonadHTTP m => Configuration -> m (Response ByteString)
Documentation
Arguments
:: forall m. MonadHTTP m | |
=> ClientT m (Response Get_business_entityResponse) | Monadic computation which returns the result of the operation |
GET /business_entities/{business_entity_id}
Fetch a business entity
data Get_business_entityResponse Source #
Represents a response of the operation get_business_entity
.
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), Get_business_entityResponseError
is used.
Constructors
Get_business_entityResponseError String | Means either no matching case available or a parse error |
Get_business_entityResponse200 BusinessEntity | Business entity details |
Get_business_entityResponse404 Error | Incorrect site or business entity ID. |
Get_business_entityResponseDefault Error | Unexpected error. |
Instances
Show Get_business_entityResponse Source # | |
Defined in RecurlyClient.Operations.Get_business_entity Methods showsPrec :: Int -> Get_business_entityResponse -> ShowS # show :: Get_business_entityResponse -> String # showList :: [Get_business_entityResponse] -> ShowS # | |
Eq Get_business_entityResponse Source # | |
Defined in RecurlyClient.Operations.Get_business_entity Methods (==) :: Get_business_entityResponse -> Get_business_entityResponse -> Bool # (/=) :: Get_business_entityResponse -> Get_business_entityResponse -> Bool # |
get_business_entityWithConfiguration Source #
Arguments
:: forall m. MonadHTTP m | |
=> Configuration | The configuration to use in the request |
-> m (Response Get_business_entityResponse) | Monadic computation which returns the result of the operation |
GET /business_entities/{business_entity_id}
The same as get_business_entity
but accepts an explicit configuration.
get_business_entityRaw Source #
Arguments
:: forall m. MonadHTTP m | |
=> ClientT m (Response ByteString) | Monadic computation which returns the result of the operation |
GET /business_entities/{business_entity_id}
The same as get_business_entity
but returns the raw ByteString
.
get_business_entityWithConfigurationRaw Source #
Arguments
:: forall m. MonadHTTP m | |
=> Configuration | The configuration to use in the request |
-> m (Response ByteString) | Monadic computation which returns the result of the operation |
GET /business_entities/{business_entity_id}
The same as get_business_entity
but accepts an explicit configuration and returns the raw ByteString
.