// // 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 DayStatDTO { /// Returns a new [DayStatDTO] instance. DayStatDTO({ this.date, this.total, this.mobile, this.tablet, }); String? date; /// /// 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. /// int? total; /// /// 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. /// int? mobile; /// /// 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. /// int? tablet; @override bool operator ==(Object other) => identical(this, other) || other is DayStatDTO && other.date == date && other.total == total && other.mobile == mobile && other.tablet == tablet; @override int get hashCode => // ignore: unnecessary_parenthesis (date == null ? 0 : date!.hashCode) + (total == null ? 0 : total!.hashCode) + (mobile == null ? 0 : mobile!.hashCode) + (tablet == null ? 0 : tablet!.hashCode); @override String toString() => 'DayStatDTO[date=$date, total=$total, mobile=$mobile, tablet=$tablet]'; Map toJson() { final json = {}; if (this.date != null) { json[r'date'] = this.date; } else { json[r'date'] = null; } if (this.total != null) { json[r'total'] = this.total; } else { json[r'total'] = null; } if (this.mobile != null) { json[r'mobile'] = this.mobile; } else { json[r'mobile'] = null; } if (this.tablet != null) { json[r'tablet'] = this.tablet; } else { json[r'tablet'] = null; } return json; } /// Returns a new [DayStatDTO] instance and imports its values from /// [value] if it's a [Map], null otherwise. // ignore: prefer_constructors_over_static_methods static DayStatDTO? 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 "DayStatDTO[$key]" is missing from JSON.'); assert(json[key] != null, 'Required key "DayStatDTO[$key]" has a null value in JSON.'); }); return true; }()); return DayStatDTO( date: mapValueOfType(json, r'date'), total: mapValueOfType(json, r'total'), mobile: mapValueOfType(json, r'mobile'), tablet: mapValueOfType(json, r'tablet'), ); } 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 = DayStatDTO.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 = DayStatDTO.fromJson(entry.value); if (value != null) { map[entry.key] = value; } } } return map; } // maps a json object with a list of DayStatDTO-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] = DayStatDTO.listFromJson( entry.value, growable: growable, ); } } return map; } /// The list of required keys that must be present in a JSON. static const requiredKeys = {}; }