/* Options: Date: 2026-03-31 18:45:38 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-dogw.klokgroep.nl/api //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: GetNavigators.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/views/{ViewId}/explorers/{ExplorerId}/navigators", "GET") // @Route("/documentviews/{ViewId}/explorers/{ExplorerId}/navigators", "GET") public class GetNavigators : IReturn, ISearchCriteria, Codable { public typealias Return = [Node] public var viewId:String? public var explorerId:String? public var path:String? public var nodeExplorerID:String? public var searchCriteria:String? required public init(){} } public protocol ISearchCriteria { var searchCriteria:String? { get set } }