// // 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 part of openapi.api; class ServerConfigDto { /// Returns a new [ServerConfigDto] instance. ServerConfigDto({ required this.externalDomain, required this.isInitialized, required this.isOnboarded, required this.loginPageMessage, required this.maintenanceMode, required this.mapDarkStyleUrl, required this.mapLightStyleUrl, required this.oauthButtonText, required this.publicUsers, required this.trashDays, required this.userDeleteDelay, }); /// External domain URL String externalDomain; /// Whether the server has been initialized bool isInitialized; /// Whether the admin has completed onboarding bool isOnboarded; /// Login page message String loginPageMessage; /// Whether maintenance mode is active bool maintenanceMode; /// Map dark style URL String mapDarkStyleUrl; /// Map light style URL String mapLightStyleUrl; /// OAuth button text String oauthButtonText; /// Whether public user registration is enabled bool publicUsers; /// Number of days before trashed assets are permanently deleted /// /// Minimum value: -9007199254740991 /// Maximum value: 9007199254740991 int trashDays; /// Delay in days before deleted users are permanently removed /// /// Minimum value: -9007199254740991 /// Maximum value: 9007199254740991 int userDeleteDelay; @override bool operator ==(Object other) => identical(this, other) || other is ServerConfigDto && other.externalDomain == externalDomain && other.isInitialized == isInitialized && other.isOnboarded == isOnboarded && other.loginPageMessage == loginPageMessage && other.maintenanceMode == maintenanceMode && other.mapDarkStyleUrl == mapDarkStyleUrl && other.mapLightStyleUrl == mapLightStyleUrl && other.oauthButtonText == oauthButtonText && other.publicUsers == publicUsers && other.trashDays == trashDays && other.userDeleteDelay == userDeleteDelay; @override int get hashCode => // ignore: unnecessary_parenthesis (externalDomain.hashCode) + (isInitialized.hashCode) + (isOnboarded.hashCode) + (loginPageMessage.hashCode) + (maintenanceMode.hashCode) + (mapDarkStyleUrl.hashCode) + (mapLightStyleUrl.hashCode) + (oauthButtonText.hashCode) + (publicUsers.hashCode) + (trashDays.hashCode) + (userDeleteDelay.hashCode); @override String toString() => 'ServerConfigDto[externalDomain=$externalDomain, isInitialized=$isInitialized, isOnboarded=$isOnboarded, loginPageMessage=$loginPageMessage, maintenanceMode=$maintenanceMode, mapDarkStyleUrl=$mapDarkStyleUrl, mapLightStyleUrl=$mapLightStyleUrl, oauthButtonText=$oauthButtonText, publicUsers=$publicUsers, trashDays=$trashDays, userDeleteDelay=$userDeleteDelay]'; Map toJson() { final json = {}; json[r'externalDomain'] = this.externalDomain; json[r'isInitialized'] = this.isInitialized; json[r'isOnboarded'] = this.isOnboarded; json[r'loginPageMessage'] = this.loginPageMessage; json[r'maintenanceMode'] = this.maintenanceMode; json[r'mapDarkStyleUrl'] = this.mapDarkStyleUrl; json[r'mapLightStyleUrl'] = this.mapLightStyleUrl; json[r'oauthButtonText'] = this.oauthButtonText; json[r'publicUsers'] = this.publicUsers; json[r'trashDays'] = this.trashDays; json[r'userDeleteDelay'] = this.userDeleteDelay; return json; } /// Returns a new [ServerConfigDto] instance and imports its values from /// [value] if it's a [Map], null otherwise. // ignore: prefer_constructors_over_static_methods static ServerConfigDto? fromJson(dynamic value) { if (value is Map) { final json = value.cast(); // Ensure that the map contains the required keys. // Note 1: the values aren't checked for validity beyond being non-null. // Note 2: this code is stripped in release mode! assert(() { assert(json.containsKey(r'externalDomain'), 'Required key "ServerConfigDto[externalDomain]" is missing from JSON.'); assert(json[r'externalDomain'] != null, 'Required key "ServerConfigDto[externalDomain]" has a null value in JSON.'); assert(json.containsKey(r'isInitialized'), 'Required key "ServerConfigDto[isInitialized]" is missing from JSON.'); assert(json[r'isInitialized'] != null, 'Required key "ServerConfigDto[isInitialized]" has a null value in JSON.'); assert(json.containsKey(r'isOnboarded'), 'Required key "ServerConfigDto[isOnboarded]" is missing from JSON.'); assert(json[r'isOnboarded'] != null, 'Required key "ServerConfigDto[isOnboarded]" has a null value in JSON.'); assert(json.containsKey(r'loginPageMessage'), 'Required key "ServerConfigDto[loginPageMessage]" is missing from JSON.'); assert(json[r'loginPageMessage'] != null, 'Required key "ServerConfigDto[loginPageMessage]" has a null value in JSON.'); assert(json.containsKey(r'maintenanceMode'), 'Required key "ServerConfigDto[maintenanceMode]" is missing from JSON.'); assert(json[r'maintenanceMode'] != null, 'Required key "ServerConfigDto[maintenanceMode]" has a null value in JSON.'); assert(json.containsKey(r'mapDarkStyleUrl'), 'Required key "ServerConfigDto[mapDarkStyleUrl]" is missing from JSON.'); assert(json[r'mapDarkStyleUrl'] != null, 'Required key "ServerConfigDto[mapDarkStyleUrl]" has a null value in JSON.'); assert(json.containsKey(r'mapLightStyleUrl'), 'Required key "ServerConfigDto[mapLightStyleUrl]" is missing from JSON.'); assert(json[r'mapLightStyleUrl'] != null, 'Required key "ServerConfigDto[mapLightStyleUrl]" has a null value in JSON.'); assert(json.containsKey(r'oauthButtonText'), 'Required key "ServerConfigDto[oauthButtonText]" is missing from JSON.'); assert(json[r'oauthButtonText'] != null, 'Required key "ServerConfigDto[oauthButtonText]" has a null value in JSON.'); assert(json.containsKey(r'publicUsers'), 'Required key "ServerConfigDto[publicUsers]" is missing from JSON.'); assert(json[r'publicUsers'] != null, 'Required key "ServerConfigDto[publicUsers]" has a null value in JSON.'); assert(json.containsKey(r'trashDays'), 'Required key "ServerConfigDto[trashDays]" is missing from JSON.'); assert(json[r'trashDays'] != null, 'Required key "ServerConfigDto[trashDays]" has a null value in JSON.'); assert(json.containsKey(r'userDeleteDelay'), 'Required key "ServerConfigDto[userDeleteDelay]" is missing from JSON.'); assert(json[r'userDeleteDelay'] != null, 'Required key "ServerConfigDto[userDeleteDelay]" has a null value in JSON.'); return true; }()); return ServerConfigDto( externalDomain: mapValueOfType(json, r'externalDomain')!, isInitialized: mapValueOfType(json, r'isInitialized')!, isOnboarded: mapValueOfType(json, r'isOnboarded')!, loginPageMessage: mapValueOfType(json, r'loginPageMessage')!, maintenanceMode: mapValueOfType(json, r'maintenanceMode')!, mapDarkStyleUrl: mapValueOfType(json, r'mapDarkStyleUrl')!, mapLightStyleUrl: mapValueOfType(json, r'mapLightStyleUrl')!, oauthButtonText: mapValueOfType(json, r'oauthButtonText')!, publicUsers: mapValueOfType(json, r'publicUsers')!, trashDays: mapValueOfType(json, r'trashDays')!, userDeleteDelay: mapValueOfType(json, r'userDeleteDelay')!, ); } return null; } static List listFromJson(dynamic json, {bool growable = false,}) { final result = []; if (json is List && json.isNotEmpty) { for (final row in json) { final value = ServerConfigDto.fromJson(row); if (value != null) { result.add(value); } } } return result.toList(growable: growable); } static Map mapFromJson(dynamic json) { final map = {}; if (json is Map && json.isNotEmpty) { json = json.cast(); // ignore: parameter_assignments for (final entry in json.entries) { final value = ServerConfigDto.fromJson(entry.value); if (value != null) { map[entry.key] = value; } } } return map; } // maps a json object with a list of ServerConfigDto-objects as value to a dart map static Map> mapListFromJson(dynamic json, {bool growable = false,}) { final map = >{}; if (json is Map && json.isNotEmpty) { // ignore: parameter_assignments json = json.cast(); for (final entry in json.entries) { map[entry.key] = ServerConfigDto.listFromJson(entry.value, growable: growable,); } } return map; } /// The list of required keys that must be present in a JSON. static const requiredKeys = { 'externalDomain', 'isInitialized', 'isOnboarded', 'loginPageMessage', 'maintenanceMode', 'mapDarkStyleUrl', 'mapLightStyleUrl', 'oauthButtonText', 'publicUsers', 'trashDays', 'userDeleteDelay', }; }