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