/* Options:
Date: 2026-04-01 00:34:21
Version: 8.80
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://test-do-services.klokgroep.nl/api
//GlobalNamespace:
//MakePartial: True
//MakeVirtual: True
//MakeInternal: False
//MakeDataContractsExtensible: False
//AddNullableAnnotations: False
//AddReturnMarker: True
//AddDescriptionAsComments: True
//AddDataContractAttributes: False
//AddIndexesToDataMembers: False
//AddGeneratedCodeAttributes: False
//AddResponseStatus: False
//AddImplicitVersion:
//InitializeCollections: False
//ExportValueTypes: False
IncludeTypes: GetDocumentInfoOperation.*
//ExcludeTypes:
//AddNamespaces:
//AddDefaultXmlNamespace: http://schemas.servicestack.net/types
*/
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using System.Drawing;
using IDB.API.DTO.Document.Operations;
namespace IDB.API.DTO.Document.Operations
{
///
///Download DocumentInfoXml.
///
[Route("/documents/{DocID}/documentinfo", "GET")]
[Api(Description="Download DocumentInfoXml.")]
public partial class GetDocumentInfoOperation
: IReturn
{
///
///ID of the Document Registration
///
[ApiMember(Description="ID of the Document Registration", IsRequired=true)]
public virtual Guid DocID { get; set; }
}
}