/* Options: Date: 2025-08-05 01:59:45 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetCacheStatuses.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/diagnostics/cache-statuses", Verbs="GET") public static class GetCacheStatuses implements IReturn { private static Object responseType = CacheStatusesProxy.class; public Object getResponseType() { return responseType; } } public static class CacheStatusesProxy { public Boolean OutputCache = null; public Boolean ClientCache = null; public Boolean L2Cache = null; public Boolean ClientSideCacheForThemes = null; public Boolean RssCache = null; public Boolean PagesPermissionsCache = null; public Boolean isOutputCache() { return OutputCache; } public CacheStatusesProxy setOutputCache(Boolean value) { this.OutputCache = value; return this; } public Boolean isClientCache() { return ClientCache; } public CacheStatusesProxy setClientCache(Boolean value) { this.ClientCache = value; return this; } public Boolean isL2Cache() { return L2Cache; } public CacheStatusesProxy setL2Cache(Boolean value) { this.L2Cache = value; return this; } public Boolean isClientSideCacheForThemes() { return ClientSideCacheForThemes; } public CacheStatusesProxy setClientSideCacheForThemes(Boolean value) { this.ClientSideCacheForThemes = value; return this; } public Boolean isRssCache() { return RssCache; } public CacheStatusesProxy setRssCache(Boolean value) { this.RssCache = value; return this; } public Boolean isPagesPermissionsCache() { return PagesPermissionsCache; } public CacheStatusesProxy setPagesPermissionsCache(Boolean value) { this.PagesPermissionsCache = value; return this; } } }