/* Options: Date: 2025-12-06 04:33:25 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://s4w1.api.bengabet.webhop.biz //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: ConfigureGlobalCodePot.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/cmd/configure/global-code-pot", "POST") public class ConfigureGlobalCodePot : IReturn, Codable { public typealias Return = ResponseStatus public var id:String? public var configuration: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(){} }