/* Options: Date: 2026-03-31 19:59:42 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dogw.klokgroep.nl/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetNavigationContext.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class CommonEntityIdentifier implements IConvertible { String? ID; String? DisplayName; String? EntityName; CommonEntityIdentifier({this.ID,this.DisplayName,this.EntityName}); CommonEntityIdentifier.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ID = json['ID']; DisplayName = json['DisplayName']; EntityName = json['EntityName']; return this; } Map toJson() => { 'ID': ID, 'DisplayName': DisplayName, 'EntityName': EntityName }; getTypeName() => "CommonEntityIdentifier"; TypeContext? context = _ctx; } class NavigationContext implements IConvertible { String? Title; List? NavigationElements; NavigationContext({this.Title,this.NavigationElements}); NavigationContext.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Title = json['Title']; NavigationElements = JsonConverters.fromJson(json['NavigationElements'],'List',context!); return this; } Map toJson() => { 'Title': Title, 'NavigationElements': JsonConverters.toJson(NavigationElements,'List',context!) }; getTypeName() => "NavigationContext"; TypeContext? context = _ctx; } // @Route("/navigation/context", "GET") class GetNavigationContext implements IReturn, IConvertible, IGet { String? ViewID; String? Path; GetNavigationContext({this.ViewID,this.Path}); GetNavigationContext.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ViewID = json['ViewID']; Path = json['Path']; return this; } Map toJson() => { 'ViewID': ViewID, 'Path': Path }; createResponse() => NavigationContext(); getResponseTypeName() => "NavigationContext"; getTypeName() => "GetNavigationContext"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'dogw.klokgroep.nl', types: { 'CommonEntityIdentifier': TypeInfo(TypeOf.Class, create:() => CommonEntityIdentifier()), 'NavigationContext': TypeInfo(TypeOf.Class, create:() => NavigationContext()), 'List': TypeInfo(TypeOf.Class, create:() => []), 'GetNavigationContext': TypeInfo(TypeOf.Class, create:() => GetNavigationContext()), });