/* Options: Date: 2026-03-31 20:30:59 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-do-services.klokgroep.nl/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetNavigationContext.* //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.* @Route(Path="/navigation/context", Verbs="GET") open class GetNavigationContext : IReturn { open var ViewID:UUID? = null open var Path:String? = null companion object { private val responseType = NavigationContext::class.java } override fun getResponseType(): Any? = GetNavigationContext.responseType } open class NavigationContext { open var Title:String? = null open var NavigationElements:ArrayList? = null } open class CommonEntityIdentifier { open var ID:String? = null open var DisplayName:String? = null open var EntityName:String? = null }