/* Options: Date: 2026-05-19 04:33:23 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: AdminQueryScriptRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.* import java.util.* import net.servicestack.client.* import com.google.gson.annotations.* import com.google.gson.reflect.* open class AdminQueryScriptRequest : IReturn { var queryName:String? = null var queryParametersAsString:String? = null var queryParameters:HashMap = HashMap() var queryFilter:String? = null var queryOrder:String? = null companion object { private val responseType = AdminQueryScriptResults::class.java } override fun getResponseType(): Any? = AdminQueryScriptRequest.responseType } open class AdminQueryScriptResults { @SerializedName("data") var Data:Object? = null var statusCode:Int? = null var message:String? = null }