""" Options: Date: 2025-07-04 08:24:18 Version: 6.110 Tip: To override a DTO option, remove "#" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api #GlobalNamespace: #AddServiceStackTypes: True #AddResponseStatus: False #AddImplicitVersion: #AddDescriptionAsComments: True IncludeTypes: ViewsAndExplorers.* #ExcludeTypes: #DefaultImports: datetime,decimal,marshmallow.fields:*,servicestack:*,typing:*,dataclasses:dataclass/field,dataclasses_json:dataclass_json/LetterCase/Undefined/config,enum:Enum/IntEnum #DataClass: #DataClassJson: """ import datetime import decimal from marshmallow.fields import * from servicestack import * from typing import * from dataclasses import dataclass, field from dataclasses_json import dataclass_json, LetterCase, Undefined, config from enum import Enum, IntEnum @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class Node: entity_name: Optional[str] = None id: Optional[str] = None parent_i_d: Optional[str] = None title: Optional[str] = None count: Optional[int] = None image_key: Optional[str] = None expanded: bool = False selected: bool = False display_path: Optional[str] = None child_nodes: Optional[List[Node]] = None registration_path_element: Optional[str] = None query_path_element: Optional[str] = None path: Optional[str] = None is_hierarchy: bool = False @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class ViewExplorerNode(Node): view_id: Optional[str] = None explorer_id: Optional[str] = None child_nodes: Optional[List[ViewExplorerNode]] = None @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class ViewsAndExplorers(IReturn["ViewsAndExplorers"]): nodes: Optional[List[ViewExplorerNode]] = None