/* Options: Date: 2025-12-06 07:58:11 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: WebixKanbanUserRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/v1/webix/kanban/users", Verbs="GET,OPTIONS") open class WebixKanbanUserRequest : IReturn { companion object { private val responseType = WebixKanbanUserResponse::class.java } override fun getResponseType(): Any? = WebixKanbanUserRequest.responseType } open class WebixKanbanUserResponse : WebixKanbanUser() { } open class WebixKanbanUser { open var id:Int? = null open var value:String? = null open var image:String? = null }