/* Options: Date: 2026-02-03 23:12:14 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://ws.jimsnwa.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ChangePasswordRQ.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class ChangePasswordRS implements IConvertible { bool? Success; String? Error; ChangePasswordRS({this.Success,this.Error}); ChangePasswordRS.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Success = json['Success']; Error = json['Error']; return this; } Map toJson() => { 'Success': Success, 'Error': Error }; getTypeName() => "ChangePasswordRS"; TypeContext? context = _ctx; } // @Route("/Utilidades/CambiarClave") class ChangePasswordRQ implements IReturn, IConvertible { String? NewPassword; ChangePasswordRQ({this.NewPassword}); ChangePasswordRQ.fromJson(Map json) { fromMap(json); } fromMap(Map json) { NewPassword = json['NewPassword']; return this; } Map toJson() => { 'NewPassword': NewPassword }; createResponse() => ChangePasswordRS(); getResponseTypeName() => "ChangePasswordRS"; getTypeName() => "ChangePasswordRQ"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'ws.jimsnwa.com', types: { 'ChangePasswordRS': TypeInfo(TypeOf.Class, create:() => ChangePasswordRS()), 'ChangePasswordRQ': TypeInfo(TypeOf.Class, create:() => ChangePasswordRQ()), });