v1HistoryDownloadPost method

Future<Response<String>> v1HistoryDownloadPost({
  1. String? xiApiKey,
  2. required BodyDownloadHistoryItemsV1HistoryDownloadPost? body,
})

Download History Items @param xi-api-key Your API key. This is required by most endpoints to access our API programatically. You can view your xi-api-key using the 'Profile' tab on the website.

Implementation

Future<chopper.Response<String>> v1HistoryDownloadPost({
  String? xiApiKey,
  required BodyDownloadHistoryItemsV1HistoryDownloadPost? body,
}) {
  return _v1HistoryDownloadPost(xiApiKey: xiApiKey?.toString(), body: body);
}