mirror of
https://github.com/immich-app/immich
synced 2026-08-22 13:13:05 +00:00
64 lines
1.4 KiB
Dart
64 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 SharedLinkEditDto
|
|
void main() {
|
|
// final instance = SharedLinkEditDto();
|
|
|
|
group('test SharedLinkEditDto', () {
|
|
// Allow downloads
|
|
// Optional<bool?> allowDownload
|
|
test('to test the property `allowDownload`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Allow uploads
|
|
// Optional<bool?> allowUpload
|
|
test('to test the property `allowUpload`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Link description
|
|
// Optional<String?> description
|
|
test('to test the property `description`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Expiration date
|
|
// Optional<DateTime?> expiresAt
|
|
test('to test the property `expiresAt`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Link password
|
|
// Optional<String?> password
|
|
test('to test the property `password`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Show metadata
|
|
// Optional<bool?> showMetadata
|
|
test('to test the property `showMetadata`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Custom URL slug
|
|
// Optional<String?> slug
|
|
test('to test the property `slug`', () async {
|
|
// TODO
|
|
});
|
|
|
|
|
|
});
|
|
|
|
}
|