/* Options: Date: 2025-06-07 18:09: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: ChangePasswordRQ.* //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/CambiarClave") public static class ChangePasswordRQ implements IReturn { public String NewPassword = null; public String getNewPassword() { return NewPassword; } public ChangePasswordRQ setNewPassword(String value) { this.NewPassword = value; return this; } private static Object responseType = ChangePasswordRS.class; public Object getResponseType() { return responseType; } } public static class ChangePasswordRS { public Boolean Success = null; public String Error = null; public Boolean isSuccess() { return Success; } public ChangePasswordRS setSuccess(Boolean value) { this.Success = value; return this; } public String getError() { return Error; } public ChangePasswordRS setError(String value) { this.Error = value; return this; } } }