/* Options: Date: 2025-07-04 07:58:23 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ViewsAndExplorers.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class Node { public EntityName: string; public ID: string; public ParentID: string; public Title: string; public Count?: number; public ImageKey: string; public Expanded: boolean; public Selected: boolean; public DisplayPath: string; public ChildNodes: Node[]; public RegistrationPathElement: string; public QueryPathElement: string; public Path: string; public IsHierarchy: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class ViewExplorerNode extends Node { public ViewId?: string; public ExplorerId?: string; public ChildNodes: ViewExplorerNode[]; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } export class ViewsAndExplorers implements IReturn { public Nodes: ViewExplorerNode[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ViewsAndExplorers'; } public getMethod() { return 'POST'; } public createResponse() { return new ViewsAndExplorers(); } }