/* Options: Date: 2025-06-07 18:21:16 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: ProcesarPlanoIDRQ.* //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/ProcesarPlanoID") public static class ProcesarPlanoIDRQ implements IReturn { public Integer IDPlano = null; public Integer IDCarga = null; public String Estado = null; public Integer getIdPlano() { return IDPlano; } public ProcesarPlanoIDRQ setIdPlano(Integer value) { this.IDPlano = value; return this; } public Integer getIdCarga() { return IDCarga; } public ProcesarPlanoIDRQ setIdCarga(Integer value) { this.IDCarga = value; return this; } public String getEstado() { return Estado; } public ProcesarPlanoIDRQ setEstado(String value) { this.Estado = 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; } } }