/* Options: Date: 2025-11-08 10:56:34 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: GetGlobalCodePotConfiguration.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/qry/global-code-pot/config") public class GetGlobalCodePotConfiguration : IReturn, Codable { public typealias Return = GlobalCodePotConfigurations required public init(){} } public class GlobalCodePotConfigurations : Codable { public var id:String? public var cfg:GCPConfiguration? required public init(){} } public class GCPConfiguration : Codable { public var isActive:Bool? public var interval:ThresholdInterval? public var pct:Double? public var reservePct:Double? public var totalPct:Double? required public init(){} } public class ThresholdInterval : Codable { public var start:Double? public var end:Double? required public init(){} }