/* Options: Date: 2025-08-05 02:40:45 SwiftVersion: 5.0 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: ChangeABTestStatus.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/ab-testing/change-status/{id}", "PUT") public class ChangeABTestStatus : IReturn, Codable { public typealias Return = ChangeABTestStatus public var id:String public var status:ABTestStatus public var checkOutThePageAfterPublish:Bool required public init(){} } public enum ABTestStatus : String, Codable { case NotStarted case Scheduled case Active case Stopped case Ended }