/* Options: Date: 2025-06-07 18:44:23 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: usuaPermisoRQ.* //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/GetPermissionRQ") public static class usuaPermisoRQ implements IReturn { public String usua_login = null; public Integer sist_sist = null; public Integer empr_empr = null; public BigDecimal carp_carp = null; public String getUsuaLogin() { return usua_login; } public usuaPermisoRQ setUsuaLogin(String value) { this.usua_login = value; return this; } public Integer getSistSist() { return sist_sist; } public usuaPermisoRQ setSistSist(Integer value) { this.sist_sist = value; return this; } public Integer getEmprEmpr() { return empr_empr; } public usuaPermisoRQ setEmprEmpr(Integer value) { this.empr_empr = value; return this; } public BigDecimal getCarpCarp() { return carp_carp; } public usuaPermisoRQ setCarpCarp(BigDecimal value) { this.carp_carp = value; return this; } private static Object responseType = usuaPermisoRS.class; public Object getResponseType() { return responseType; } } public static class usuaPermisoRS { public BigDecimal carp_carp = null; public Boolean carp_delete = null; public Boolean carp_upload = null; public Boolean carp_share = null; public Boolean cap_download = null; public String error = null; public BigDecimal getCarpCarp() { return carp_carp; } public usuaPermisoRS setCarpCarp(BigDecimal value) { this.carp_carp = value; return this; } public Boolean isCarpDelete() { return carp_delete; } public usuaPermisoRS setCarpDelete(Boolean value) { this.carp_delete = value; return this; } public Boolean isCarpUpload() { return carp_upload; } public usuaPermisoRS setCarpUpload(Boolean value) { this.carp_upload = value; return this; } public Boolean isCarpShare() { return carp_share; } public usuaPermisoRS setCarpShare(Boolean value) { this.carp_share = value; return this; } public Boolean isCapDownload() { return cap_download; } public usuaPermisoRS setCapDownload(Boolean value) { this.cap_download = value; return this; } public String getError() { return error; } public usuaPermisoRS setError(String value) { this.error = value; return this; } } }