/* Options: Date: 2025-06-07 19:02:45 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: CancelarEjecucionRQ.* //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/Procedimientos/CancelarEjecucion") public static class CancelarEjecucionRQ implements IReturn { public BigDecimal CodigoEjecucion = null; public String MotivoCancela = null; public BigDecimal getCodigoEjecucion() { return CodigoEjecucion; } public CancelarEjecucionRQ setCodigoEjecucion(BigDecimal value) { this.CodigoEjecucion = value; return this; } public String getMotivoCancela() { return MotivoCancela; } public CancelarEjecucionRQ setMotivoCancela(String value) { this.MotivoCancela = value; return this; } private static Object responseType = GeneralRS.class; public Object getResponseType() { return responseType; } } public static class GeneralRS { /** * Id del código de respuesta 1: Correcto, -1: Error */ @ApiMember(DataType="int", Description="Id del código de respuesta 1: Correcto, -1: Error", IsRequired=true, ParameterType="body") public Integer Codigo = null; /** * Mensaje que se envía al ejecutar el servicio */ @ApiMember(DataType="string", Description="Mensaje que se envía al ejecutar el servicio", IsRequired=true, ParameterType="body") public String Mensaje = null; public Integer getCodigo() { return Codigo; } public GeneralRS setCodigo(Integer value) { this.Codigo = value; return this; } public String getMensaje() { return Mensaje; } public GeneralRS setMensaje(String value) { this.Mensaje = value; return this; } } }