// // 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 part of openapi.api; class AllJobStatusResponseDto { /// Returns a new [AllJobStatusResponseDto] instance. AllJobStatusResponseDto({ required this.thumbnailGenerationQueueCount, required this.metadataExtractionQueueCount, required this.videoConversionQueueCount, required this.machineLearningQueueCount, required this.isThumbnailGenerationActive, required this.isMetadataExtractionActive, required this.isVideoConversionActive, required this.isMachineLearningActive, }); JobCounts thumbnailGenerationQueueCount; JobCounts metadataExtractionQueueCount; JobCounts videoConversionQueueCount; JobCounts machineLearningQueueCount; bool isThumbnailGenerationActive; bool isMetadataExtractionActive; bool isVideoConversionActive; bool isMachineLearningActive; @override bool operator ==(Object other) => identical(this, other) || other is AllJobStatusResponseDto && other.thumbnailGenerationQueueCount == thumbnailGenerationQueueCount && other.metadataExtractionQueueCount == metadataExtractionQueueCount && other.videoConversionQueueCount == videoConversionQueueCount && other.machineLearningQueueCount == machineLearningQueueCount && other.isThumbnailGenerationActive == isThumbnailGenerationActive && other.isMetadataExtractionActive == isMetadataExtractionActive && other.isVideoConversionActive == isVideoConversionActive && other.isMachineLearningActive == isMachineLearningActive; @override int get hashCode => // ignore: unnecessary_parenthesis (thumbnailGenerationQueueCount.hashCode) + (metadataExtractionQueueCount.hashCode) + (videoConversionQueueCount.hashCode) + (machineLearningQueueCount.hashCode) + (isThumbnailGenerationActive.hashCode) + (isMetadataExtractionActive.hashCode) + (isVideoConversionActive.hashCode) + (isMachineLearningActive.hashCode); @override String toString() => 'AllJobStatusResponseDto[thumbnailGenerationQueueCount=$thumbnailGenerationQueueCount, metadataExtractionQueueCount=$metadataExtractionQueueCount, videoConversionQueueCount=$videoConversionQueueCount, machineLearningQueueCount=$machineLearningQueueCount, isThumbnailGenerationActive=$isThumbnailGenerationActive, isMetadataExtractionActive=$isMetadataExtractionActive, isVideoConversionActive=$isVideoConversionActive, isMachineLearningActive=$isMachineLearningActive]'; Map toJson() { final _json = {}; _json[r'thumbnailGenerationQueueCount'] = thumbnailGenerationQueueCount; _json[r'metadataExtractionQueueCount'] = metadataExtractionQueueCount; _json[r'videoConversionQueueCount'] = videoConversionQueueCount; _json[r'machineLearningQueueCount'] = machineLearningQueueCount; _json[r'isThumbnailGenerationActive'] = isThumbnailGenerationActive; _json[r'isMetadataExtractionActive'] = isMetadataExtractionActive; _json[r'isVideoConversionActive'] = isVideoConversionActive; _json[r'isMachineLearningActive'] = isMachineLearningActive; return _json; } /// Returns a new [AllJobStatusResponseDto] instance and imports its values from /// [value] if it's a [Map], null otherwise. // ignore: prefer_constructors_over_static_methods static AllJobStatusResponseDto? 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(() { requiredKeys.forEach((key) { assert(json.containsKey(key), 'Required key "AllJobStatusResponseDto[$key]" is missing from JSON.'); assert(json[key] != null, 'Required key "AllJobStatusResponseDto[$key]" has a null value in JSON.'); }); return true; }()); return AllJobStatusResponseDto( thumbnailGenerationQueueCount: JobCounts.fromJson(json[r'thumbnailGenerationQueueCount'])!, metadataExtractionQueueCount: JobCounts.fromJson(json[r'metadataExtractionQueueCount'])!, videoConversionQueueCount: JobCounts.fromJson(json[r'videoConversionQueueCount'])!, machineLearningQueueCount: JobCounts.fromJson(json[r'machineLearningQueueCount'])!, isThumbnailGenerationActive: mapValueOfType(json, r'isThumbnailGenerationActive')!, isMetadataExtractionActive: mapValueOfType(json, r'isMetadataExtractionActive')!, isVideoConversionActive: mapValueOfType(json, r'isVideoConversionActive')!, isMachineLearningActive: mapValueOfType(json, r'isMachineLearningActive')!, ); } 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 = AllJobStatusResponseDto.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 = AllJobStatusResponseDto.fromJson(entry.value); if (value != null) { map[entry.key] = value; } } } return map; } // maps a json object with a list of AllJobStatusResponseDto-objects as value to a dart map static Map> mapListFromJson(dynamic json, {bool growable = false,}) { final map = >{}; if (json is Map && json.isNotEmpty) { json = json.cast(); // ignore: parameter_assignments for (final entry in json.entries) { final value = AllJobStatusResponseDto.listFromJson(entry.value, growable: growable,); if (value != null) { map[entry.key] = value; } } } return map; } /// The list of required keys that must be present in a JSON. static const requiredKeys = { 'thumbnailGenerationQueueCount', 'metadataExtractionQueueCount', 'videoConversionQueueCount', 'machineLearningQueueCount', 'isThumbnailGenerationActive', 'isMetadataExtractionActive', 'isVideoConversionActive', 'isMachineLearningActive', }; }