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