/* Options: Date: 2025-08-05 02:04:00 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: SettingsRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/search/settings") // @Route(Path="/search/settings", Verbs="GET") open class SettingsRequest : IReturn { var IndexId:UUID? = null var SuggestionFields:String? = null var SectionName:String? = null var Text:String? = null var Take:Int? = null var Skip:Int? = null companion object { private val responseType = SettingsResponse::class.java } override fun getResponseType(): Any? = SettingsRequest.responseType } open class SettingsResponse { var Results:ArrayList? = null }