/* Options: Date: 2025-08-05 01:59:43 SwiftVersion: 5.0 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: GetUncachedLibraries.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/diagnostics/uncached-libraries", "GET") public class GetUncachedLibraries : IReturn, Codable { public typealias Return = UncachedLibrariesProxy public var countOnly:Bool public var skip:Int public var take:Int public var siteId:String required public init(){} } public class UncachedLibrariesProxy : Codable { public var notCachedLibraries:[MediaLibraryProxy] = [] public var countAllSites:Int public var countCurrentSite:Int required public init(){} } public class MediaLibraryProxy : Codable { public var title:String public var libraryType:String public var cacheProfileType:CacheProfileType required public init(){} } public enum CacheProfileType : String, Codable { case Client case Server case Both }