/* Options: Date: 2025-11-08 10:56:35 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://s4w2.api.bettor.cc //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: GetLocalCodePotConfigs.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/qry/lcp/configs") public class GetLocalCodePotConfigs : IReturn, Codable { public typealias Return = LocalCodePotConfigurations required public init(){} } public class LocalCodePotConfigurations : Codable { public var id:String? public var configurations:[String:Configuration]? required public init(){} } public class LCPConfiguration : Codable { public var isActive:Bool? public var interval:ThresholdInterval? public var pct:Double? required public init(){} } public class ThresholdInterval : Codable { public var start:Double? public var end:Double? required public init(){} } public class Configuration : Codable { public var id:String? public var name:String? public var cfg:LCPConfiguration? required public init(){} }