/* Options: Date: 2026-03-31 23:03:25 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dogw.klokgroep.nl/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetNavigators.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface ISearchCriteria { SearchCriteria: string; } // @Route("/views/{ViewId}/explorers/{ExplorerId}/navigators", "GET") // @Route("/documentviews/{ViewId}/explorers/{ExplorerId}/navigators", "GET") export class GetNavigators implements IReturn, ISearchCriteria { public ViewId: string; public ExplorerId: string; public Path: string; public NodeExplorerID: string; public SearchCriteria: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetNavigators'; } public getMethod() { return 'GET'; } public createResponse() { return new Array(); } }