/* Options: Date: 2025-09-07 08:50:54 Version: 8.81 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://account.servicestack.net //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ResetUserPassword.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/reset-password/{ResetToken}") // @Route("/ResetUserPassword", "GET POST") class ResetUserPassword implements IReturnVoid, IPost, IConvertible { String? resetToken; String? email; String? newPassword; String? confirm; ResetUserPassword({this.resetToken,this.email,this.newPassword,this.confirm}); ResetUserPassword.fromJson(Map json) { fromMap(json); } fromMap(Map json) { resetToken = json['resetToken']; email = json['email']; newPassword = json['newPassword']; confirm = json['confirm']; return this; } Map toJson() => { 'resetToken': resetToken, 'email': email, 'newPassword': newPassword, 'confirm': confirm }; createResponse() {} getTypeName() => "ResetUserPassword"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'account.servicestack.net', types: { 'ResetUserPassword': TypeInfo(TypeOf.Class, create:() => ResetUserPassword()), });