/* Options: Date: 2025-08-05 01:58:39 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: GetUncachedLibraries.* //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/uncached-libraries", Verbs="GET") open class GetUncachedLibraries : IReturn { var CountOnly:Boolean? = null var Skip:Int? = null var Take:Int? = null var SiteId:UUID? = null companion object { private val responseType = UncachedLibrariesProxy::class.java } override fun getResponseType(): Any? = GetUncachedLibraries.responseType } open class UncachedLibrariesProxy { var NotCachedLibraries:ArrayList = ArrayList() var CountAllSites:Int? = null var CountCurrentSite:Int? = null } open class MediaLibraryProxy { var Title:String? = null var LibraryType:String? = null var CacheProfileType:CacheProfileType? = null } enum class CacheProfileType { Client, Server, Both, }