/* Options: Date: 2025-06-07 16:35:17 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: UnShareReportRQ.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/restfiles/UnShareReportRQ") public static class UnShareReportRQ implements IReturn { public BigDecimal reporte = null; public String usuario = null; public BigDecimal sistema = null; public BigDecimal empresa = null; public BigDecimal getReporte() { return reporte; } public UnShareReportRQ setReporte(BigDecimal value) { this.reporte = value; return this; } public String getUsuario() { return usuario; } public UnShareReportRQ setUsuario(String value) { this.usuario = value; return this; } public BigDecimal getSistema() { return sistema; } public UnShareReportRQ setSistema(BigDecimal value) { this.sistema = value; return this; } public BigDecimal getEmpresa() { return empresa; } public UnShareReportRQ setEmpresa(BigDecimal value) { this.empresa = value; return this; } private static Object responseType = UnShareReportRS.class; public Object getResponseType() { return responseType; } } public static class UnShareReportRS { public Boolean isUnShared = null; public String error = null; public Boolean getIsUnShared() { return isUnShared; } public UnShareReportRS setIsUnShared(Boolean value) { this.isUnShared = value; return this; } public String getError() { return error; } public UnShareReportRS setError(String value) { this.error = value; return this; } } }