/* Options: Date: 2025-09-07 11:27:11 Version: 8.81 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://account.servicestack.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: Cached.* //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="/Cached") // @Route(Path="/Cached/{Id}") public static class Cached implements IReturn { public String id = null; public String getId() { return id; } public Cached setId(String value) { this.id = value; return this; } private static Object responseType = CachedResponse.class; public Object getResponseType() { return responseType; } } public static class CachedResponse { public String result = null; public Integer counter = null; public String getResult() { return result; } public CachedResponse setResult(String value) { this.result = value; return this; } public Integer getCounter() { return counter; } public CachedResponse setCounter(Integer value) { this.counter = value; return this; } } }