/* Options: Date: 2025-08-05 02:00:50 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ChangeABTestStatus.* //ExcludeTypes: //DefaultImports: */ export enum ABTestStatus { NotStarted = 'NotStarted', Scheduled = 'Scheduled', Active = 'Active', Stopped = 'Stopped', Ended = 'Ended', } // @Route("/ab-testing/change-status/{id}", "PUT") export class ChangeABTestStatus implements IReturn { public Id: string; public Status: ABTestStatus; public CheckOutThePageAfterPublish: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ChangeABTestStatus'; } public getMethod() { return 'PUT'; } public createResponse() { return new ChangeABTestStatus(); } }