/* Options: Date: 2025-07-04 09:41:28 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: GetViewsAndExplorers.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/Navigation/ViewsAndExplorers", "GET") // @Route("/Navigation/ViewsAndExplorers/{FlattenHierarchy}", "GET") class GetViewsAndExplorers implements IReturn, IConvertible, IGet { bool? FlattenHierarchy; String? ProgCode; GetViewsAndExplorers({this.FlattenHierarchy,this.ProgCode}); GetViewsAndExplorers.fromJson(Map json) { fromMap(json); } fromMap(Map json) { FlattenHierarchy = json['FlattenHierarchy']; ProgCode = json['ProgCode']; return this; } Map toJson() => { 'FlattenHierarchy': FlattenHierarchy, 'ProgCode': ProgCode }; createResponse() => GetViewsAndExplorers(); getResponseTypeName() => "GetViewsAndExplorers"; getTypeName() => "GetViewsAndExplorers"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'doapigw.baasbv.nl', types: { 'GetViewsAndExplorers': TypeInfo(TypeOf.Class, create:() => GetViewsAndExplorers()), });