/* Options: Date: 2026-04-02 03:45:20 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: GetGoalNextPageValidation.* //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/is-valid", Verbs="GET") open class GetPageValidation : IReturn { open var Id:UUID? = null open var Culture:String? = null companion object { private val responseType = PageValidation::class.java } override fun getResponseType(): Any? = GetPageValidation.responseType } @Route(Path="/ab-testing/is-valid-goal-page", Verbs="GET") open class GetGoalNextPageValidation : GetPageValidation(), IReturn { companion object { private val responseType = GoalNexPageValidation::class.java } override fun getResponseType(): Any? = GetGoalNextPageValidation.responseType } open class PageValidation { open var IsValid:Boolean? = null } open class GoalNexPageValidation : PageValidation() { }