/* Options: Date: 2025-06-07 18:16:42 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: ProcesarPlanoRQ.* //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/Archivos/ProcesarPlano") public static class ProcesarPlanoRQ implements IReturn { public Integer IDForma = null; public Integer IDDetalle = null; public String Estado = null; public HashMap DatosLlaveMaestro = null; public Integer getIdForma() { return IDForma; } public ProcesarPlanoRQ setIdForma(Integer value) { this.IDForma = value; return this; } public Integer getIdDetalle() { return IDDetalle; } public ProcesarPlanoRQ setIdDetalle(Integer value) { this.IDDetalle = value; return this; } public String getEstado() { return Estado; } public ProcesarPlanoRQ setEstado(String value) { this.Estado = value; return this; } public HashMap getDatosLlaveMaestro() { return DatosLlaveMaestro; } public ProcesarPlanoRQ setDatosLlaveMaestro(HashMap value) { this.DatosLlaveMaestro = value; return this; } private static Object responseType = ProcesarPlanoRS.class; public Object getResponseType() { return responseType; } } public static class ProcesarPlanoRS { public Boolean Success = null; public String Error = null; public Boolean isSuccess() { return Success; } public ProcesarPlanoRS setSuccess(Boolean value) { this.Success = value; return this; } public String getError() { return Error; } public ProcesarPlanoRS setError(String value) { this.Error = value; return this; } } }