immich/mobile/openapi/test/shared_link_response_dto_test.dart

103 lines
2.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 SharedLinkResponseDto
void main() {
// final instance = SharedLinkResponseDto();
group('test SharedLinkResponseDto', () {
// Optional<AlbumResponseDto?> album
test('to test the property `album`', () async {
// TODO
});
// Allow downloads
// bool allowDownload
test('to test the property `allowDownload`', () async {
// TODO
});
// Allow uploads
// bool allowUpload
test('to test the property `allowUpload`', () async {
// TODO
});
// List<AssetResponseDto> assets (default value: const [])
test('to test the property `assets`', () async {
// TODO
});
// Creation date
// DateTime createdAt
test('to test the property `createdAt`', () async {
// TODO
});
// Link description
// String description
test('to test the property `description`', () async {
// TODO
});
// Expiration date
// DateTime expiresAt
test('to test the property `expiresAt`', () async {
// TODO
});
// Shared link ID
// String id
test('to test the property `id`', () async {
// TODO
});
// Encryption key (base64url)
// String key
test('to test the property `key`', () async {
// TODO
});
// Has password
// String password
test('to test the property `password`', () async {
// TODO
});
// Show metadata
// bool showMetadata
test('to test the property `showMetadata`', () async {
// TODO
});
// Custom URL slug
// String slug
test('to test the property `slug`', () async {
// TODO
});
// SharedLinkType type
test('to test the property `type`', () async {
// TODO
});
// Owner user ID
// String userId
test('to test the property `userId`', () async {
// TODO
});
});
}