/* Options: Date: 2025-08-04 03:41:31 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://szallitoiportal-be.veolia.hu //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ResetPassword.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; abstract class ResponseBase { ResponseStatus? ResponseStatus; ResponseBase({this.ResponseStatus}); ResponseBase.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!); return this; } Map toJson() => { 'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!) }; getTypeName() => "ResponseBase"; TypeContext? context = _ctx; } class ResetPasswordResponse extends ResponseBase implements IConvertible { ResetPasswordResponse(); ResetPasswordResponse.fromJson(Map json) : super.fromJson(json); fromMap(Map json) { super.fromMap(json); return this; } Map toJson() => super.toJson(); getTypeName() => "ResetPasswordResponse"; TypeContext? context = _ctx; } // @Route("/user/resetpassword", "POST") class ResetPassword implements IReturn, IPost, IConvertible { String? Email; String? Token; String? Password; ResetPassword({this.Email,this.Token,this.Password}); ResetPassword.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Email = json['Email']; Token = json['Token']; Password = json['Password']; return this; } Map toJson() => { 'Email': Email, 'Token': Token, 'Password': Password }; createResponse() => ResetPasswordResponse(); getResponseTypeName() => "ResetPasswordResponse"; getTypeName() => "ResetPassword"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'szallitoiportal_be.veolia.hu', types: { 'ResponseBase': TypeInfo(TypeOf.AbstractClass), 'ResetPasswordResponse': TypeInfo(TypeOf.Class, create:() => ResetPasswordResponse()), 'ResetPassword': TypeInfo(TypeOf.Class, create:() => ResetPassword()), });