/* Options: Date: 2026-03-31 18:36:46 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dogw.klokgroep.nl/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetDocumentSignatureSubstitutes.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/documents/{DocumentID}/GetSignatureSubstitutes", "GET") class GetDocumentSignatureSubstitutes implements IReturn>, IConvertible, IGet { String? DocumentID; GetDocumentSignatureSubstitutes({this.DocumentID}); GetDocumentSignatureSubstitutes.fromJson(Map json) { fromMap(json); } fromMap(Map json) { DocumentID = json['DocumentID']; return this; } Map toJson() => { 'DocumentID': DocumentID }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "GetDocumentSignatureSubstitutes"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'dogw.klokgroep.nl', types: { 'List': TypeInfo(TypeOf.Class, create:() => []), 'SignatureSubstitute': TypeInfo(TypeOf.Class, create:() => SignatureSubstitute()), 'GetDocumentSignatureSubstitutes': TypeInfo(TypeOf.Class, create:() => GetDocumentSignatureSubstitutes()), });