/* Options: Date: 2025-08-05 02:02:58 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetCacheStatuses.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/diagnostics/cache-statuses", Verbs="GET") open class GetCacheStatuses : IReturn { companion object { private val responseType = CacheStatusesProxy::class.java } override fun getResponseType(): Any? = GetCacheStatuses.responseType } open class CacheStatusesProxy { var OutputCache:Boolean? = null var ClientCache:Boolean? = null var L2Cache:Boolean? = null var ClientSideCacheForThemes:Boolean? = null var RssCache:Boolean? = null var PagesPermissionsCache:Boolean? = null }