/* Options: Date: 2025-06-07 16:44:33 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: ValoresDefectoFormaRQ.* //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/Formas/ValoresDefecto") public static class ValoresDefectoFormaRQ implements IReturn { public Integer IDTabla = null; public HashMap Parametros = null; public Integer getIdTabla() { return IDTabla; } public ValoresDefectoFormaRQ setIdTabla(Integer value) { this.IDTabla = value; return this; } public HashMap getParametros() { return Parametros; } public ValoresDefectoFormaRQ setParametros(HashMap value) { this.Parametros = value; return this; } private static Object responseType = ValoresDefectoFormaRS.class; public Object getResponseType() { return responseType; } } public static class ValoresDefectoFormaRS { public HashMap ValoresDefecto = null; public HashMap getValoresDefecto() { return ValoresDefecto; } public ValoresDefectoFormaRS setValoresDefecto(HashMap value) { this.ValoresDefecto = value; return this; } } }