/* Options: Date: 2026-03-31 18:36:24 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-do-services.klokgroep.nl/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetDocumentInfoOperation.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; /** * Download DocumentInfoXml. */ // @Route("/documents/{DocID}/documentinfo", "GET") // @Api(Description="Download DocumentInfoXml.") class GetDocumentInfoOperation implements IReturn, IConvertible, IGet { /** * ID of the Document Registration */ // @ApiMember(Description="ID of the Document Registration", IsRequired=true) String? DocID; GetDocumentInfoOperation({this.DocID}); GetDocumentInfoOperation.fromJson(Map json) { fromMap(json); } fromMap(Map json) { DocID = json['DocID']; return this; } Map toJson() => { 'DocID': DocID }; createResponse() => Uint8List(0); getResponseTypeName() => "Uint8List"; getTypeName() => "GetDocumentInfoOperation"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'test_do_services.klokgroep.nl', types: { 'GetDocumentInfoOperation': TypeInfo(TypeOf.Class, create:() => GetDocumentInfoOperation()), });