immich/mobile/openapi/test/download_api_test.dart

39 lines
1.2 KiB
Dart

//
// AUTO-GENERATED FILE, DO NOT MODIFY!
//
// @dart=2.18
// ignore_for_file: unused_element, unused_import
// ignore_for_file: always_put_required_named_parameters_first
// ignore_for_file: constant_identifier_names
// ignore_for_file: lines_longer_than_80_chars
import 'package:openapi/api.dart';
import 'package:test/test.dart';
/// tests for DownloadApi
void main() {
// final instance = DownloadApi();
group('tests for DownloadApi', () {
// Download asset archive
//
// Download a ZIP archive containing the specified assets. The assets must have been previously requested via the \"getDownloadInfo\" endpoint.
//
//Future<MultipartFile> downloadArchive(DownloadArchiveDto downloadArchiveDto, { String key, String slug }) async
test('test downloadArchive', () async {
// TODO
});
// Retrieve download information
//
// Retrieve information about how to request a download for the specified assets or album. The response includes groups of assets that can be downloaded together.
//
//Future<DownloadResponseDto> getDownloadInfo(DownloadInfoDto downloadInfoDto, { String key, String slug }) async
test('test getDownloadInfo', () async {
// TODO
});
});
}