/* Options: Date: 2025-06-07 18:52:08 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: LimpiarCacheLookupRQ.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class LimpiarCacheLookupRS implements IConvertible { bool? Success; String? Error; LimpiarCacheLookupRS({this.Success,this.Error}); LimpiarCacheLookupRS.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Success = json['Success']; Error = json['Error']; return this; } Map toJson() => { 'Success': Success, 'Error': Error }; getTypeName() => "LimpiarCacheLookupRS"; TypeContext? context = _ctx; } // @Route("/Utilidades/Consultas/Lookups/Limpiar") class LimpiarCacheLookupRQ implements IReturn, IConvertible, IPost { int? IDVista; LimpiarCacheLookupRQ({this.IDVista}); LimpiarCacheLookupRQ.fromJson(Map json) { fromMap(json); } fromMap(Map json) { IDVista = json['IDVista']; return this; } Map toJson() => { 'IDVista': IDVista }; createResponse() => LimpiarCacheLookupRS(); getResponseTypeName() => "LimpiarCacheLookupRS"; getTypeName() => "LimpiarCacheLookupRQ"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'soluser_recaudo.sgsas.co', types: { 'LimpiarCacheLookupRS': TypeInfo(TypeOf.Class, create:() => LimpiarCacheLookupRS()), 'LimpiarCacheLookupRQ': TypeInfo(TypeOf.Class, create:() => LimpiarCacheLookupRQ()), });