mirror of
https://github.com/immich-app/immich.git
synced 2024-11-15 09:59:00 -07:00
5cd13227ad
* feat: server changes for album timeline * feat(web): album timeline view * chore: open api * chore: remove archive action * fix: favorite for non-owners
103 lines
2.2 KiB
Dart
Generated
103 lines
2.2 KiB
Dart
Generated
//
|
|
// AUTO-GENERATED FILE, DO NOT MODIFY!
|
|
//
|
|
// @dart=2.12
|
|
|
|
// 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 AlbumResponseDto
|
|
void main() {
|
|
// final instance = AlbumResponseDto();
|
|
|
|
group('test AlbumResponseDto', () {
|
|
// String albumName
|
|
test('to test the property `albumName`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String albumThumbnailAssetId
|
|
test('to test the property `albumThumbnailAssetId`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int assetCount
|
|
test('to test the property `assetCount`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// List<AssetResponseDto> assets (default value: const [])
|
|
test('to test the property `assets`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime createdAt
|
|
test('to test the property `createdAt`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String description
|
|
test('to test the property `description`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime endDate
|
|
test('to test the property `endDate`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// bool hasSharedLink
|
|
test('to test the property `hasSharedLink`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String id
|
|
test('to test the property `id`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime lastModifiedAssetTimestamp
|
|
test('to test the property `lastModifiedAssetTimestamp`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// UserResponseDto owner
|
|
test('to test the property `owner`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String ownerId
|
|
test('to test the property `ownerId`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// bool shared
|
|
test('to test the property `shared`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// List<UserResponseDto> sharedUsers (default value: const [])
|
|
test('to test the property `sharedUsers`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime startDate
|
|
test('to test the property `startDate`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime updatedAt
|
|
test('to test the property `updatedAt`', () async {
|
|
// TODO
|
|
});
|
|
|
|
|
|
});
|
|
|
|
}
|