/* Options: Date: 2026-03-31 17:12:07 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dogw.klokgroep.nl/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ViewsAndExplorers.* //ExcludeTypes: //InitializeCollections: False //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.* open class ViewsAndExplorers : IReturn { open var Nodes:ArrayList? = null companion object { private val responseType = ViewsAndExplorers::class.java } override fun getResponseType(): Any? = ViewsAndExplorers.responseType } open class ViewExplorerNode : Node() { open var ViewId:UUID? = null open var ExplorerId:UUID? = null override var ChildNodes:ArrayList? = null } open class Node { open var EntityName:String? = null open var ID:String? = null open var ParentID:String? = null open var Title:String? = null open var Count:Int? = null open var ImageKey:String? = null open var Expanded:Boolean? = null open var Selected:Boolean? = null open var DisplayPath:String? = null open var ChildNodes:ArrayList? = null open var RegistrationPathElement:String? = null open var QueryPathElement:String? = null open var Path:String? = null open var IsHierarchy:Boolean? = null }