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