/* Options: Date: 2026-03-31 18:33:26 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-do-services.klokgroep.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetDocumentInfoOperation.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { /** * Download DocumentInfoXml. */ @Route(Path="/documents/{DocID}/documentinfo", Verbs="GET") @Api(Description="Download DocumentInfoXml.") public static class GetDocumentInfoOperation implements IReturn { /** * ID of the Document Registration */ @ApiMember(Description="ID of the Document Registration", IsRequired=true) public UUID DocID = null; public UUID getDocID() { return DocID; } public GetDocumentInfoOperation setDocID(UUID value) { this.DocID = value; return this; } private static Object responseType = byte[].class; public Object getResponseType() { return responseType; } } }