/* Options: Date: 2026-06-01 15:04:06 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.imglobal.com/RestApi //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetABTestEditPageSelector.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/ab-testing/edit-page-selector", Verbs="GET") open class GetABTestEditPageSelector : IReturn, IHasConnectionError { override var PageNodeId:UUID? = null open var Culture:String? = null override var HasConnectionConfigurationError:Boolean? = null companion object { private val responseType = ABTestEditPageSelectorViewModel::class.java } override fun getResponseType(): Any? = GetABTestEditPageSelector.responseType } open class ABTestEditPageSelectorViewModel { open var Id:UUID? = null open var Status:ABTestStatus? = null open var Variations:ArrayList? = null open var PreviewLink:String? = null open var AbTestingApiServerHasConnection:Boolean? = null open var HasConnectionConfigurationError:Boolean? = null open var WarningMessage:String? = null open var ApiKeyChanged:Boolean? = null } enum class ABTestStatus { NotStarted, Scheduled, Active, Stopped, Ended, } interface IHasConnectionError { var HasConnectionConfigurationError:Boolean? var PageNodeId:UUID? } open class ABTestVariationViewModel { open var VariatonId:UUID? = null open var VariationName:String? = null open var VariationLink:String? = null open var IsWinner:Boolean? = null open var Ordinal:Int? = null }