/* Options: Date: 2025-08-05 02:35:39 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: CaptchaRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/comments-api/captcha", Verbs="GET") open class CaptchaRequest : IReturn { companion object { private val responseType = CaptchaResponse::class.java } override fun getResponseType(): Any? = CaptchaRequest.responseType } @Route(Path="/captcha", Verbs="GET") open class CaptchaRequest : IReturn { companion object { private val responseType = CaptchaResponse::class.java } override fun getResponseType(): Any? = CaptchaRequest.responseType } open class CaptchaResponse { var Image:String? = null var CorrectAnswer:String? = null var InitializationVector:String? = null var Key:String? = null var Audio:String? = null } open class CaptchaResponse { var Image:String? = null var CorrectAnswer:String? = null var InitializationVector:String? = null var Key:String? = null var Audio:String? = null }