/* Options: Date: 2025-11-08 11:11:01 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: GetFeedHeartbeat.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/qry/feed/hb") public class GetFeedHeartbeat : IReturn, Codable { public typealias Return = FeedHeartbeat required public init(){} } public class FeedHeartbeat : Codable { public var roundId:String? public var stage:Stages? public var step:Int? public var steps:Int? public var utcTimestamp:Date? public var lockdownStepFromEnd:Int? public var overall:Progress? public var isHappyHour:Bool? required public init(){} } public enum Stages : Int, Codable { case None = 0 case Countdown = 1 case Processing = 2 case Draw = 3 case Results = 4 } public class Progress : Codable { public var step:Int? public var steps:Int? public var pct:Float? required public init(){} }