mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-30 18:35:00 -04:00 
			
		
		
		
	* Add album sorting to web albums view * generate api --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
		
			
				
	
	
		
			83 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
		
			Generated
		
	
	
			
		
		
	
	
			83 lines
		
	
	
		
			1.8 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', () {
 | |
|     // int assetCount
 | |
|     test('to test the property `assetCount`', () async {
 | |
|       // TODO
 | |
|     });
 | |
| 
 | |
|     // String id
 | |
|     test('to test the property `id`', () async {
 | |
|       // TODO
 | |
|     });
 | |
| 
 | |
|     // String ownerId
 | |
|     test('to test the property `ownerId`', () async {
 | |
|       // TODO
 | |
|     });
 | |
| 
 | |
|     // String albumName
 | |
|     test('to test the property `albumName`', () async {
 | |
|       // TODO
 | |
|     });
 | |
| 
 | |
|     // DateTime createdAt
 | |
|     test('to test the property `createdAt`', () async {
 | |
|       // TODO
 | |
|     });
 | |
| 
 | |
|     // DateTime updatedAt
 | |
|     test('to test the property `updatedAt`', () async {
 | |
|       // TODO
 | |
|     });
 | |
| 
 | |
|     // String albumThumbnailAssetId
 | |
|     test('to test the property `albumThumbnailAssetId`', () 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
 | |
|     });
 | |
| 
 | |
|     // List<AssetResponseDto> assets (default value: const [])
 | |
|     test('to test the property `assets`', () async {
 | |
|       // TODO
 | |
|     });
 | |
| 
 | |
|     // UserResponseDto owner
 | |
|     test('to test the property `owner`', () async {
 | |
|       // TODO
 | |
|     });
 | |
| 
 | |
|     // DateTime lastModifiedAssetTimestamp
 | |
|     test('to test the property `lastModifiedAssetTimestamp`', () async {
 | |
|       // TODO
 | |
|     });
 | |
| 
 | |
| 
 | |
|   });
 | |
| 
 | |
| }
 |