| Safe Haskell | Safe-Inferred |
|---|---|
| Language | Haskell2010 |
RecurlyClient.Operations.Get_export_dates
Description
Contains the different functions to run the operation get_export_dates
Synopsis
- get_export_dates :: forall m. MonadHTTP m => ClientT m (Response Get_export_datesResponse)
- data Get_export_datesResponse
- get_export_datesWithConfiguration :: forall m. MonadHTTP m => Configuration -> m (Response Get_export_datesResponse)
- get_export_datesRaw :: forall m. MonadHTTP m => ClientT m (Response ByteString)
- get_export_datesWithConfigurationRaw :: forall m. MonadHTTP m => Configuration -> m (Response ByteString)
Documentation
Arguments
| :: forall m. MonadHTTP m | |
| => ClientT m (Response Get_export_datesResponse) | Monadic computation which returns the result of the operation |
GET /export_dates
Returns a list of dates for which export files are available for download.
data Get_export_datesResponse Source #
Represents a response of the operation get_export_dates.
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_export_datesResponseError is used.
Constructors
| Get_export_datesResponseError String | Means either no matching case available or a parse error |
| Get_export_datesResponse200 ExportDates | Returns a list of dates. |
| Get_export_datesResponse400 Error | Invalid or unpermitted parameter. |
| Get_export_datesResponse404 Error | Incorrect site ID. |
| Get_export_datesResponseDefault Error | Unexpected error. |
Instances
| Show Get_export_datesResponse Source # | |
Defined in RecurlyClient.Operations.Get_export_dates Methods showsPrec :: Int -> Get_export_datesResponse -> ShowS # show :: Get_export_datesResponse -> String # showList :: [Get_export_datesResponse] -> ShowS # | |
| Eq Get_export_datesResponse Source # | |
Defined in RecurlyClient.Operations.Get_export_dates Methods (==) :: Get_export_datesResponse -> Get_export_datesResponse -> Bool # (/=) :: Get_export_datesResponse -> Get_export_datesResponse -> Bool # | |
get_export_datesWithConfiguration Source #
Arguments
| :: forall m. MonadHTTP m | |
| => Configuration | The configuration to use in the request |
| -> m (Response Get_export_datesResponse) | Monadic computation which returns the result of the operation |
GET /export_dates
The same as get_export_dates but accepts an explicit configuration.
Arguments
| :: forall m. MonadHTTP m | |
| => ClientT m (Response ByteString) | Monadic computation which returns the result of the operation |
GET /export_dates
The same as get_export_dates but returns the raw ByteString.
get_export_datesWithConfigurationRaw 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 /export_dates
The same as get_export_dates but accepts an explicit configuration and returns the raw ByteString.