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