(* Options: Date: 2025-08-05 02:45:22 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: ChangeABTestStatus.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Telerik.Sitefinity.ABTesting.Model open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Globalization type ABTestStatus = | NotStarted = 0 | Scheduled = 1 | Active = 2 | Stopped = 3 | Ended = 4 [] [] type ChangeABTestStatus() = interface IReturn member val Id:Guid = new Guid() with get,set member val Status:ABTestStatus = new ABTestStatus() with get,set member val CheckOutThePageAfterPublish:Boolean = new Boolean() with get,set