// // 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 UserResponseDto { /// Returns a new [UserResponseDto] instance. UserResponseDto({ required this.createdAt, required this.deletedAt, required this.email, required this.externalPath, required this.firstName, required this.id, required this.isAdmin, required this.lastName, this.memoriesEnabled, required this.oauthId, required this.profileImagePath, required this.shouldChangePassword, required this.storageLabel, required this.updatedAt, }); DateTime createdAt; DateTime? deletedAt; String email; String? externalPath; String firstName; String id; bool isAdmin; String lastName; /// /// 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? memoriesEnabled; String oauthId; String profileImagePath; bool shouldChangePassword; String? storageLabel; DateTime updatedAt; @override bool operator ==(Object other) => identical(this, other) || other is UserResponseDto && other.createdAt == createdAt && other.deletedAt == deletedAt && other.email == email && other.externalPath == externalPath && other.firstName == firstName && other.id == id && other.isAdmin == isAdmin && other.lastName == lastName && other.memoriesEnabled == memoriesEnabled && other.oauthId == oauthId && other.profileImagePath == profileImagePath && other.shouldChangePassword == shouldChangePassword && other.storageLabel == storageLabel && other.updatedAt == updatedAt; @override int get hashCode => // ignore: unnecessary_parenthesis (createdAt.hashCode) + (deletedAt == null ? 0 : deletedAt!.hashCode) + (email.hashCode) + (externalPath == null ? 0 : externalPath!.hashCode) + (firstName.hashCode) + (id.hashCode) + (isAdmin.hashCode) + (lastName.hashCode) + (memoriesEnabled == null ? 0 : memoriesEnabled!.hashCode) + (oauthId.hashCode) + (profileImagePath.hashCode) + (shouldChangePassword.hashCode) + (storageLabel == null ? 0 : storageLabel!.hashCode) + (updatedAt.hashCode); @override String toString() => 'UserResponseDto[createdAt=$createdAt, deletedAt=$deletedAt, email=$email, externalPath=$externalPath, firstName=$firstName, id=$id, isAdmin=$isAdmin, lastName=$lastName, memoriesEnabled=$memoriesEnabled, oauthId=$oauthId, profileImagePath=$profileImagePath, shouldChangePassword=$shouldChangePassword, storageLabel=$storageLabel, updatedAt=$updatedAt]'; Map toJson() { final json = {}; json[r'createdAt'] = this.createdAt.toUtc().toIso8601String(); if (this.deletedAt != null) { json[r'deletedAt'] = this.deletedAt!.toUtc().toIso8601String(); } else { // json[r'deletedAt'] = null; } json[r'email'] = this.email; if (this.externalPath != null) { json[r'externalPath'] = this.externalPath; } else { // json[r'externalPath'] = null; } json[r'firstName'] = this.firstName; json[r'id'] = this.id; json[r'isAdmin'] = this.isAdmin; json[r'lastName'] = this.lastName; if (this.memoriesEnabled != null) { json[r'memoriesEnabled'] = this.memoriesEnabled; } else { // json[r'memoriesEnabled'] = null; } json[r'oauthId'] = this.oauthId; json[r'profileImagePath'] = this.profileImagePath; json[r'shouldChangePassword'] = this.shouldChangePassword; if (this.storageLabel != null) { json[r'storageLabel'] = this.storageLabel; } else { // json[r'storageLabel'] = null; } json[r'updatedAt'] = this.updatedAt.toUtc().toIso8601String(); return json; } /// Returns a new [UserResponseDto] instance and imports its values from /// [value] if it's a [Map], null otherwise. // ignore: prefer_constructors_over_static_methods static UserResponseDto? fromJson(dynamic value) { if (value is Map) { final json = value.cast(); return UserResponseDto( createdAt: mapDateTime(json, r'createdAt', '')!, deletedAt: mapDateTime(json, r'deletedAt', ''), email: mapValueOfType(json, r'email')!, externalPath: mapValueOfType(json, r'externalPath'), firstName: mapValueOfType(json, r'firstName')!, id: mapValueOfType(json, r'id')!, isAdmin: mapValueOfType(json, r'isAdmin')!, lastName: mapValueOfType(json, r'lastName')!, memoriesEnabled: mapValueOfType(json, r'memoriesEnabled'), oauthId: mapValueOfType(json, r'oauthId')!, profileImagePath: mapValueOfType(json, r'profileImagePath')!, shouldChangePassword: mapValueOfType(json, r'shouldChangePassword')!, storageLabel: mapValueOfType(json, r'storageLabel'), updatedAt: mapDateTime(json, r'updatedAt', '')!, ); } 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 = UserResponseDto.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 = UserResponseDto.fromJson(entry.value); if (value != null) { map[entry.key] = value; } } } return map; } // maps a json object with a list of UserResponseDto-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] = UserResponseDto.listFromJson(entry.value, growable: growable,); } } return map; } /// The list of required keys that must be present in a JSON. static const requiredKeys = { 'createdAt', 'deletedAt', 'email', 'externalPath', 'firstName', 'id', 'isAdmin', 'lastName', 'oauthId', 'profileImagePath', 'shouldChangePassword', 'storageLabel', 'updatedAt', }; }