shared_link_create_dto_test.dart 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. //
  2. // AUTO-GENERATED FILE, DO NOT MODIFY!
  3. //
  4. // @dart=2.12
  5. // ignore_for_file: unused_element, unused_import
  6. // ignore_for_file: always_put_required_named_parameters_first
  7. // ignore_for_file: constant_identifier_names
  8. // ignore_for_file: lines_longer_than_80_chars
  9. import 'package:openapi/api.dart';
  10. import 'package:test/test.dart';
  11. // tests for SharedLinkCreateDto
  12. void main() {
  13. // final instance = SharedLinkCreateDto();
  14. group('test SharedLinkCreateDto', () {
  15. // SharedLinkType type
  16. test('to test the property `type`', () async {
  17. // TODO
  18. });
  19. // List<String> assetIds (default value: const [])
  20. test('to test the property `assetIds`', () async {
  21. // TODO
  22. });
  23. // String albumId
  24. test('to test the property `albumId`', () async {
  25. // TODO
  26. });
  27. // String description
  28. test('to test the property `description`', () async {
  29. // TODO
  30. });
  31. // DateTime expiresAt
  32. test('to test the property `expiresAt`', () async {
  33. // TODO
  34. });
  35. // bool allowUpload (default value: false)
  36. test('to test the property `allowUpload`', () async {
  37. // TODO
  38. });
  39. // bool allowDownload (default value: true)
  40. test('to test the property `allowDownload`', () async {
  41. // TODO
  42. });
  43. // bool showExif (default value: true)
  44. test('to test the property `showExif`', () async {
  45. // TODO
  46. });
  47. });
  48. }