immich/mobile/openapi/test/user_admin_create_dto_test.dart

81 lines
1.8 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 UserAdminCreateDto
void main() {
// final instance = UserAdminCreateDto();
group('test UserAdminCreateDto', () {
// Optional<UserAvatarColor?> avatarColor
test('to test the property `avatarColor`', () async {
// TODO
});
// User email
// String email
test('to test the property `email`', () async {
// TODO
});
// Grant admin privileges
// Optional<bool?> isAdmin
test('to test the property `isAdmin`', () async {
// TODO
});
// User name
// String name
test('to test the property `name`', () async {
// TODO
});
// Send notification email
// Optional<bool?> notify
test('to test the property `notify`', () async {
// TODO
});
// User password
// String password
test('to test the property `password`', () async {
// TODO
});
// PIN code
// Optional<String?> pinCode
test('to test the property `pinCode`', () async {
// TODO
});
// Storage quota in bytes
// Optional<int?> quotaSizeInBytes
test('to test the property `quotaSizeInBytes`', () async {
// TODO
});
// Require password change on next login
// Optional<bool?> shouldChangePassword
test('to test the property `shouldChangePassword`', () async {
// TODO
});
// Storage label
// Optional<String?> storageLabel
test('to test the property `storageLabel`', () async {
// TODO
});
});
}