/* Options: Date: 2026-08-17 08:27:50 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-app.azurewebsites.net //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetExtraInfoForm.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/extraInfo/form/{EventId}", Verbs="GET") open class GetExtraInfoForm : IReturn { var eventId:Int? = null companion object { private val responseType = ExtraInfoFormResult::class.java } override fun getResponseType(): Any? = GetExtraInfoForm.responseType } open class ExtraInfoFormResult { var eventId:Int? = null var showAlert:Boolean? = null var alertTitleIs:String? = null var alertTitleEn:String? = null var alertBodyIs:String? = null var alertBodyEn:String? = null var alertButtonIs:String? = null var alertButtonEn:String? = null var isDefault:Boolean? = null var fields:ArrayList = ArrayList() } open class ExtraInfoFieldInfo { var id:Int? = null var fieldKey:String? = null var fieldType:String? = null var labelIs:String? = null var labelEn:String? = null var placeholderIs:String? = null var placeholderEn:String? = null var isRequired:Boolean? = null var maxLength:Int? = null var optionsJson:String? = null var scope:String? = null var sortOrder:Int? = null var isSystem:Boolean? = null var isActive:Boolean? = null var hasAnswers:Boolean? = null }