/* Options: Date: 2026-01-27 20:51:40 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.vionfood.com/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetDocumentHasSigningRequestOpen.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/documents/{DocumentID}/hassigningrequestopen", "GET") class GetDocumentHasSigningRequestOpen implements IReturn, IConvertible { String? DocumentID; GetDocumentHasSigningRequestOpen({this.DocumentID}); GetDocumentHasSigningRequestOpen.fromJson(Map json) { fromMap(json); } fromMap(Map json) { DocumentID = json['DocumentID']; return this; } Map toJson() => { 'DocumentID': DocumentID }; createResponse() => bool(); getResponseTypeName() => "bool"; getTypeName() => "GetDocumentHasSigningRequestOpen"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'digiofficeapigateway.vionfood.com', types: { 'GetDocumentHasSigningRequestOpen': TypeInfo(TypeOf.Class, create:() => GetDocumentHasSigningRequestOpen()), });