/* Options: Date: 2025-06-07 19:21:36 Version: 8.12 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://soluser-recaudo.sgsas.co //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, IPost { 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: 'soluser_recaudo.sgsas.co', types: { 'ChangePasswordRS': TypeInfo(TypeOf.Class, create:() => ChangePasswordRS()), 'ChangePasswordRQ': TypeInfo(TypeOf.Class, create:() => ChangePasswordRQ()), });