/* Options: Date: 2025-08-05 02:15:40 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetPageValidation.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/ab-testing/is-valid", Verbs="GET") open class GetPageValidation : IReturn { var Id:UUID? = null var Culture:String? = null companion object { private val responseType = PageValidation::class.java } override fun getResponseType(): Any? = GetPageValidation.responseType } open class PageValidation { var IsValid:Boolean? = null }