/* Options: Date: 2025-07-04 11:01:04 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: GetNavigators.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/views/{ViewId}/explorers/{ExplorerId}/navigators", "GET") // @Route("/documentviews/{ViewId}/explorers/{ExplorerId}/navigators", "GET") class GetNavigators implements IReturn>, IConvertible, IGet { String? ViewId; String? ExplorerId; String? Path; String? NodeExplorerID; String? SearchCriteria; GetNavigators({this.ViewId,this.ExplorerId,this.Path,this.NodeExplorerID,this.SearchCriteria}); GetNavigators.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ViewId = json['ViewId']; ExplorerId = json['ExplorerId']; Path = json['Path']; NodeExplorerID = json['NodeExplorerID']; SearchCriteria = json['SearchCriteria']; return this; } Map toJson() => { 'ViewId': ViewId, 'ExplorerId': ExplorerId, 'Path': Path, 'NodeExplorerID': NodeExplorerID, 'SearchCriteria': SearchCriteria }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "GetNavigators"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'doapigw.baasbv.nl', types: { 'GetNavigators': TypeInfo(TypeOf.Class, create:() => GetNavigators()), });