/* Options: Date: 2025-10-27 22:15:41 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: TestRedis.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/test/redis/{Value}") public static class TestRedis implements IReturn { public String Value = null; public String getValue() { return Value; } public TestRedis setValue(String value) { this.Value = value; return this; } private static Object responseType = String.class; public Object getResponseType() { return responseType; } } }