/* Options: Date: 2025-11-09 11:04:21 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: GetGlobalCodePotAccumulation.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/qry/global-code-pot/accumulations") public class GetGlobalCodePotAccumulation : IReturn, Codable { public typealias Return = GlobalCodePotAccumulations required public init(){} } public class GlobalCodePotAccumulations : Codable { public var id:String? public var accumulation:GCPAccumulation? public var currentRoundId:String? 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(){} } public class GCPAccumulation : Codable { public var amount:Double? public var reserveAmount:Double? public var threshold:Double? public var cfg:GCPConfiguration? required public init(){} }