// // 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 getNotification(String id) async test('test getNotification', () async { // TODO }); // Retrieve notifications // // Retrieve a list of notifications. // //Future> 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 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 }); }); }