immich/mobile/openapi/test/notification_create_dto_test.dart

62 lines
1.4 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 NotificationCreateDto
void main() {
// final instance = NotificationCreateDto();
group('test NotificationCreateDto', () {
// Additional notification data
// Optional<Map<String, Object>?> data (default value: const {})
test('to test the property `data`', () async {
// TODO
});
// Notification description
// Optional<String?> description
test('to test the property `description`', () async {
// TODO
});
// Optional<NotificationLevel?> level
test('to test the property `level`', () async {
// TODO
});
// Date when notification was read
// Optional<DateTime?> readAt
test('to test the property `readAt`', () async {
// TODO
});
// Notification title
// String title
test('to test the property `title`', () async {
// TODO
});
// Optional<NotificationType?> type
test('to test the property `type`', () async {
// TODO
});
// User ID to send notification to
// String userId
test('to test the property `userId`', () async {
// TODO
});
});
}