2022-07-13 14:23:48 +02:00
|
|
|
//
|
|
|
|
// AUTO-GENERATED FILE, DO NOT MODIFY!
|
|
|
|
//
|
2024-05-15 23:52:52 +02:00
|
|
|
// @dart=2.18
|
2022-07-13 14:23:48 +02:00
|
|
|
|
|
|
|
// 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;
|
|
|
|
|
2023-10-06 09:01:14 +02:00
|
|
|
class AssetBulkDeleteDto {
|
|
|
|
/// Returns a new [AssetBulkDeleteDto] instance.
|
|
|
|
AssetBulkDeleteDto({
|
|
|
|
this.force,
|
2022-07-13 14:23:48 +02:00
|
|
|
this.ids = const [],
|
|
|
|
});
|
|
|
|
|
2023-10-06 09:01:14 +02:00
|
|
|
///
|
|
|
|
/// Please note: This property should have been non-nullable! Since the specification file
|
|
|
|
/// does not include a default value (using the "default:" property), however, the generated
|
|
|
|
/// source code must fall back to having a nullable type.
|
|
|
|
/// Consider adding a "default:" property in the specification file to hide this note.
|
|
|
|
///
|
|
|
|
bool? force;
|
|
|
|
|
2022-07-13 14:23:48 +02:00
|
|
|
List<String> ids;
|
|
|
|
|
|
|
|
@override
|
2023-10-06 09:01:14 +02:00
|
|
|
bool operator ==(Object other) => identical(this, other) || other is AssetBulkDeleteDto &&
|
2024-01-26 18:40:28 +02:00
|
|
|
other.force == force &&
|
|
|
|
_deepEquality.equals(other.ids, ids);
|
2022-07-13 14:23:48 +02:00
|
|
|
|
|
|
|
@override
|
|
|
|
int get hashCode =>
|
|
|
|
// ignore: unnecessary_parenthesis
|
2023-10-06 09:01:14 +02:00
|
|
|
(force == null ? 0 : force!.hashCode) +
|
2022-07-13 14:23:48 +02:00
|
|
|
(ids.hashCode);
|
|
|
|
|
|
|
|
@override
|
2023-10-06 09:01:14 +02:00
|
|
|
String toString() => 'AssetBulkDeleteDto[force=$force, ids=$ids]';
|
2022-07-13 14:23:48 +02:00
|
|
|
|
|
|
|
Map<String, dynamic> toJson() {
|
2023-01-10 06:08:45 +02:00
|
|
|
final json = <String, dynamic>{};
|
2023-10-06 09:01:14 +02:00
|
|
|
if (this.force != null) {
|
|
|
|
json[r'force'] = this.force;
|
|
|
|
} else {
|
|
|
|
// json[r'force'] = null;
|
|
|
|
}
|
2023-01-10 06:08:45 +02:00
|
|
|
json[r'ids'] = this.ids;
|
|
|
|
return json;
|
2022-07-13 14:23:48 +02:00
|
|
|
}
|
|
|
|
|
2023-10-06 09:01:14 +02:00
|
|
|
/// Returns a new [AssetBulkDeleteDto] instance and imports its values from
|
2022-07-13 14:23:48 +02:00
|
|
|
/// [value] if it's a [Map], null otherwise.
|
|
|
|
// ignore: prefer_constructors_over_static_methods
|
2023-10-06 09:01:14 +02:00
|
|
|
static AssetBulkDeleteDto? fromJson(dynamic value) {
|
2022-07-13 14:23:48 +02:00
|
|
|
if (value is Map) {
|
|
|
|
final json = value.cast<String, dynamic>();
|
|
|
|
|
2023-10-06 09:01:14 +02:00
|
|
|
return AssetBulkDeleteDto(
|
|
|
|
force: mapValueOfType<bool>(json, r'force'),
|
2024-01-26 18:40:28 +02:00
|
|
|
ids: json[r'ids'] is Iterable
|
|
|
|
? (json[r'ids'] as Iterable).cast<String>().toList(growable: false)
|
2022-07-13 14:23:48 +02:00
|
|
|
: const [],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2023-10-06 09:01:14 +02:00
|
|
|
static List<AssetBulkDeleteDto> listFromJson(dynamic json, {bool growable = false,}) {
|
|
|
|
final result = <AssetBulkDeleteDto>[];
|
2022-07-13 14:23:48 +02:00
|
|
|
if (json is List && json.isNotEmpty) {
|
|
|
|
for (final row in json) {
|
2023-10-06 09:01:14 +02:00
|
|
|
final value = AssetBulkDeleteDto.fromJson(row);
|
2022-07-13 14:23:48 +02:00
|
|
|
if (value != null) {
|
|
|
|
result.add(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result.toList(growable: growable);
|
|
|
|
}
|
|
|
|
|
2023-10-06 09:01:14 +02:00
|
|
|
static Map<String, AssetBulkDeleteDto> mapFromJson(dynamic json) {
|
|
|
|
final map = <String, AssetBulkDeleteDto>{};
|
2022-07-13 14:23:48 +02:00
|
|
|
if (json is Map && json.isNotEmpty) {
|
|
|
|
json = json.cast<String, dynamic>(); // ignore: parameter_assignments
|
|
|
|
for (final entry in json.entries) {
|
2023-10-06 09:01:14 +02:00
|
|
|
final value = AssetBulkDeleteDto.fromJson(entry.value);
|
2022-07-13 14:23:48 +02:00
|
|
|
if (value != null) {
|
|
|
|
map[entry.key] = value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return map;
|
|
|
|
}
|
|
|
|
|
2023-10-06 09:01:14 +02:00
|
|
|
// maps a json object with a list of AssetBulkDeleteDto-objects as value to a dart map
|
|
|
|
static Map<String, List<AssetBulkDeleteDto>> mapListFromJson(dynamic json, {bool growable = false,}) {
|
|
|
|
final map = <String, List<AssetBulkDeleteDto>>{};
|
2022-07-13 14:23:48 +02:00
|
|
|
if (json is Map && json.isNotEmpty) {
|
2023-05-03 21:27:57 +02:00
|
|
|
// ignore: parameter_assignments
|
|
|
|
json = json.cast<String, dynamic>();
|
2022-07-13 14:23:48 +02:00
|
|
|
for (final entry in json.entries) {
|
2023-10-06 09:01:14 +02:00
|
|
|
map[entry.key] = AssetBulkDeleteDto.listFromJson(entry.value, growable: growable,);
|
2022-07-13 14:23:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return map;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The list of required keys that must be present in a JSON.
|
|
|
|
static const requiredKeys = <String>{
|
|
|
|
'ids',
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|