/* Options: Date: 2026-01-27 19:05:58 Version: 8.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://buildmax.org //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetJsonPicklistItems.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* open class GetJsonPicklistItems : JsonDto(), IReturn { var TemplateGuid:String? = null var Guid:String? = null var Answers:HashMap = HashMap() companion object { private val responseType = JsonPicklistItemsResponse::class.java } override fun getResponseType(): Any? = GetJsonPicklistItems.responseType } open class JsonPicklistItemsResponse : JsonDto() { var Guid:String? = null var Items:ArrayList? = null } open class JsonDto { }