immich/mobile/openapi/test/notifications_api_test.dart

75 lines
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 NotificationsApi
void main() {
// final instance = NotificationsApi();
group('tests for NotificationsApi', () {
// Delete a notification
//
// Delete a specific notification.
//
//Future deleteNotification(String id) async
test('test deleteNotification', () async {
// TODO
});
// Delete notifications
//
// Delete a list of notifications at once.
//
//Future deleteNotifications(NotificationDeleteAllDto notificationDeleteAllDto) async
test('test deleteNotifications', () async {
// TODO
});
// Get a notification
//
// Retrieve a specific notification identified by id.
//
//Future<NotificationDto> getNotification(String id) async
test('test getNotification', () async {
// TODO
});
// Retrieve notifications
//
// Retrieve a list of notifications.
//
//Future<List<NotificationDto>> getNotifications({ String id, NotificationLevel level, NotificationType type, bool unread }) async
test('test getNotifications', () async {
// TODO
});
// Update a notification
//
// Update a specific notification to set its read status.
//
//Future<NotificationDto> updateNotification(String id, NotificationUpdateDto notificationUpdateDto) async
test('test updateNotification', () async {
// TODO
});
// Update notifications
//
// Update a list of notifications. Allows to bulk-set the read status of notifications.
//
//Future updateNotifications(NotificationUpdateAllDto notificationUpdateAllDto) async
test('test updateNotifications', () async {
// TODO
});
});
}