This commit is contained in:
Daniel Dietzler
2023-12-28 19:49:39 +01:00
parent 0232655da2
commit f33a662f48
18 changed files with 33 additions and 617 deletions
-122
View File
@@ -1,122 +0,0 @@
//
// 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 MetricServerInfoConfig {
/// Returns a new [MetricServerInfoConfig] instance.
MetricServerInfoConfig({
required this.cpuCount,
required this.cpuModel,
required this.memory,
required this.version,
});
bool cpuCount;
bool cpuModel;
bool memory;
bool version;
@override
bool operator ==(Object other) => identical(this, other) || other is MetricServerInfoConfig &&
other.cpuCount == cpuCount &&
other.cpuModel == cpuModel &&
other.memory == memory &&
other.version == version;
@override
int get hashCode =>
// ignore: unnecessary_parenthesis
(cpuCount.hashCode) +
(cpuModel.hashCode) +
(memory.hashCode) +
(version.hashCode);
@override
String toString() => 'MetricServerInfoConfig[cpuCount=$cpuCount, cpuModel=$cpuModel, memory=$memory, version=$version]';
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'cpuCount'] = this.cpuCount;
json[r'cpuModel'] = this.cpuModel;
json[r'memory'] = this.memory;
json[r'version'] = this.version;
return json;
}
/// Returns a new [MetricServerInfoConfig] instance and imports its values from
/// [value] if it's a [Map], null otherwise.
// ignore: prefer_constructors_over_static_methods
static MetricServerInfoConfig? fromJson(dynamic value) {
if (value is Map) {
final json = value.cast<String, dynamic>();
return MetricServerInfoConfig(
cpuCount: mapValueOfType<bool>(json, r'cpuCount')!,
cpuModel: mapValueOfType<bool>(json, r'cpuModel')!,
memory: mapValueOfType<bool>(json, r'memory')!,
version: mapValueOfType<bool>(json, r'version')!,
);
}
return null;
}
static List<MetricServerInfoConfig> listFromJson(dynamic json, {bool growable = false,}) {
final result = <MetricServerInfoConfig>[];
if (json is List && json.isNotEmpty) {
for (final row in json) {
final value = MetricServerInfoConfig.fromJson(row);
if (value != null) {
result.add(value);
}
}
}
return result.toList(growable: growable);
}
static Map<String, MetricServerInfoConfig> mapFromJson(dynamic json) {
final map = <String, MetricServerInfoConfig>{};
if (json is Map && json.isNotEmpty) {
json = json.cast<String, dynamic>(); // ignore: parameter_assignments
for (final entry in json.entries) {
final value = MetricServerInfoConfig.fromJson(entry.value);
if (value != null) {
map[entry.key] = value;
}
}
}
return map;
}
// maps a json object with a list of MetricServerInfoConfig-objects as value to a dart map
static Map<String, List<MetricServerInfoConfig>> mapListFromJson(dynamic json, {bool growable = false,}) {
final map = <String, List<MetricServerInfoConfig>>{};
if (json is Map && json.isNotEmpty) {
// ignore: parameter_assignments
json = json.cast<String, dynamic>();
for (final entry in json.entries) {
map[entry.key] = MetricServerInfoConfig.listFromJson(entry.value, growable: growable,);
}
}
return map;
}
/// The list of required keys that must be present in a JSON.
static const requiredKeys = <String>{
'cpuCount',
'cpuModel',
'memory',
'version',
};
}
-114
View File
@@ -1,114 +0,0 @@
//
// 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 MetricsAssetCountConfig {
/// Returns a new [MetricsAssetCountConfig] instance.
MetricsAssetCountConfig({
required this.image,
required this.total,
required this.video,
});
bool image;
bool total;
bool video;
@override
bool operator ==(Object other) => identical(this, other) || other is MetricsAssetCountConfig &&
other.image == image &&
other.total == total &&
other.video == video;
@override
int get hashCode =>
// ignore: unnecessary_parenthesis
(image.hashCode) +
(total.hashCode) +
(video.hashCode);
@override
String toString() => 'MetricsAssetCountConfig[image=$image, total=$total, video=$video]';
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'image'] = this.image;
json[r'total'] = this.total;
json[r'video'] = this.video;
return json;
}
/// Returns a new [MetricsAssetCountConfig] instance and imports its values from
/// [value] if it's a [Map], null otherwise.
// ignore: prefer_constructors_over_static_methods
static MetricsAssetCountConfig? fromJson(dynamic value) {
if (value is Map) {
final json = value.cast<String, dynamic>();
return MetricsAssetCountConfig(
image: mapValueOfType<bool>(json, r'image')!,
total: mapValueOfType<bool>(json, r'total')!,
video: mapValueOfType<bool>(json, r'video')!,
);
}
return null;
}
static List<MetricsAssetCountConfig> listFromJson(dynamic json, {bool growable = false,}) {
final result = <MetricsAssetCountConfig>[];
if (json is List && json.isNotEmpty) {
for (final row in json) {
final value = MetricsAssetCountConfig.fromJson(row);
if (value != null) {
result.add(value);
}
}
}
return result.toList(growable: growable);
}
static Map<String, MetricsAssetCountConfig> mapFromJson(dynamic json) {
final map = <String, MetricsAssetCountConfig>{};
if (json is Map && json.isNotEmpty) {
json = json.cast<String, dynamic>(); // ignore: parameter_assignments
for (final entry in json.entries) {
final value = MetricsAssetCountConfig.fromJson(entry.value);
if (value != null) {
map[entry.key] = value;
}
}
}
return map;
}
// maps a json object with a list of MetricsAssetCountConfig-objects as value to a dart map
static Map<String, List<MetricsAssetCountConfig>> mapListFromJson(dynamic json, {bool growable = false,}) {
final map = <String, List<MetricsAssetCountConfig>>{};
if (json is Map && json.isNotEmpty) {
// ignore: parameter_assignments
json = json.cast<String, dynamic>();
for (final entry in json.entries) {
map[entry.key] = MetricsAssetCountConfig.listFromJson(entry.value, growable: growable,);
}
}
return map;
}
/// The list of required keys that must be present in a JSON.
static const requiredKeys = <String>{
'image',
'total',
'video',
};
}
+3 -19
View File
@@ -13,38 +13,26 @@ part of openapi.api;
class SystemConfigMetricsDto {
/// Returns a new [SystemConfigMetricsDto] instance.
SystemConfigMetricsDto({
required this.assetCount,
required this.enabled,
required this.serverInfo,
});
MetricsAssetCountConfig assetCount;
bool enabled;
MetricServerInfoConfig serverInfo;
@override
bool operator ==(Object other) => identical(this, other) || other is SystemConfigMetricsDto &&
other.assetCount == assetCount &&
other.enabled == enabled &&
other.serverInfo == serverInfo;
other.enabled == enabled;
@override
int get hashCode =>
// ignore: unnecessary_parenthesis
(assetCount.hashCode) +
(enabled.hashCode) +
(serverInfo.hashCode);
(enabled.hashCode);
@override
String toString() => 'SystemConfigMetricsDto[assetCount=$assetCount, enabled=$enabled, serverInfo=$serverInfo]';
String toString() => 'SystemConfigMetricsDto[enabled=$enabled]';
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'assetCount'] = this.assetCount;
json[r'enabled'] = this.enabled;
json[r'serverInfo'] = this.serverInfo;
return json;
}
@@ -56,9 +44,7 @@ class SystemConfigMetricsDto {
final json = value.cast<String, dynamic>();
return SystemConfigMetricsDto(
assetCount: MetricsAssetCountConfig.fromJson(json[r'assetCount'])!,
enabled: mapValueOfType<bool>(json, r'enabled')!,
serverInfo: MetricServerInfoConfig.fromJson(json[r'serverInfo'])!,
);
}
return null;
@@ -106,9 +92,7 @@ class SystemConfigMetricsDto {
/// The list of required keys that must be present in a JSON.
static const requiredKeys = <String>{
'assetCount',
'enabled',
'serverInfo',
};
}