| Safe Haskell | Safe-Inferred |
|---|---|
| Language | Haskell2010 |
RecurlyClient.Operations.Get_export_files
Description
Contains the different functions to run the operation get_export_files
Synopsis
- get_export_files :: forall m. MonadHTTP m => ClientT m (Response Get_export_filesResponse)
- data Get_export_filesResponse
- get_export_filesWithConfiguration :: forall m. MonadHTTP m => Configuration -> m (Response Get_export_filesResponse)
- get_export_filesRaw :: forall m. MonadHTTP m => ClientT m (Response ByteString)
- get_export_filesWithConfigurationRaw :: forall m. MonadHTTP m => Configuration -> m (Response ByteString)
Documentation
Arguments
| :: forall m. MonadHTTP m | |
| => ClientT m (Response Get_export_filesResponse) | Monadic computation which returns the result of the operation |
GET /export_dates/{export_date}/export_filesReturns a list of presigned URLs to download export files for the given date, with their MD5 sums.
data Get_export_filesResponse Source #
Represents a response of the operation get_export_files.
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_filesResponseError is used.
Constructors
| Get_export_filesResponseError String | Means either no matching case available or a parse error |
| Get_export_filesResponse200 ExportFiles | Returns a list of export files to download. |
| Get_export_filesResponse400 Error | Invalid or unpermitted parameter. |
| Get_export_filesResponse404 Error | Incorrect site ID or date. |
| Get_export_filesResponseDefault Error | Unexpected error. |
Instances
| Show Get_export_filesResponse Source # | |
Defined in RecurlyClient.Operations.Get_export_files Methods showsPrec :: Int -> Get_export_filesResponse -> ShowS # show :: Get_export_filesResponse -> String # showList :: [Get_export_filesResponse] -> ShowS # | |
| Eq Get_export_filesResponse Source # | |
Defined in RecurlyClient.Operations.Get_export_files Methods (==) :: Get_export_filesResponse -> Get_export_filesResponse -> Bool # (/=) :: Get_export_filesResponse -> Get_export_filesResponse -> Bool # | |
get_export_filesWithConfiguration Source #
Arguments
| :: forall m. MonadHTTP m | |
| => Configuration | The configuration to use in the request |
| -> m (Response Get_export_filesResponse) | Monadic computation which returns the result of the operation |
GET /export_dates/{export_date}/export_filesThe same as get_export_files 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/{export_date}/export_filesThe same as get_export_files but returns the raw ByteString.
get_export_filesWithConfigurationRaw 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/{export_date}/export_filesThe same as get_export_files but accepts an explicit configuration and returns the raw ByteString.