/* Options: Date: 2025-06-07 18:03:38 Version: 8.12 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://soluser-recaudo.sgsas.co //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: LimpiarCacheLookupRQ.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/Utilidades/Consultas/Lookups/Limpiar") public static class LimpiarCacheLookupRQ implements IReturn { public Integer IDVista = null; public Integer getIdVista() { return IDVista; } public LimpiarCacheLookupRQ setIdVista(Integer value) { this.IDVista = value; return this; } private static Object responseType = LimpiarCacheLookupRS.class; public Object getResponseType() { return responseType; } } public static class LimpiarCacheLookupRS { public Boolean Success = null; public String Error = null; public Boolean isSuccess() { return Success; } public LimpiarCacheLookupRS setSuccess(Boolean value) { this.Success = value; return this; } public String getError() { return Error; } public LimpiarCacheLookupRS setError(String value) { this.Error = value; return this; } } }