/* Options: Date: 2025-07-04 11:01:50 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: GetNavigatorInfo.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class GetNavigatorInfo implements IConvertible, IPost { String? ViewId; String? ExplorerID; String? NavigationPath; GetNavigatorInfo({this.ViewId,this.ExplorerID,this.NavigationPath}); GetNavigatorInfo.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ViewId = json['ViewId']; ExplorerID = json['ExplorerID']; NavigationPath = json['NavigationPath']; return this; } Map toJson() => { 'ViewId': ViewId, 'ExplorerID': ExplorerID, 'NavigationPath': NavigationPath }; getTypeName() => "GetNavigatorInfo"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'doapigw.baasbv.nl', types: { 'GetNavigatorInfo': TypeInfo(TypeOf.Class, create:() => GetNavigatorInfo()), });