/* Options: Date: 2026-03-31 18:56:47 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-do-services.klokgroep.nl/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetDocumentInfoOperation.* //ExcludeTypes: //InitializeCollections: False //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.* /** * Download DocumentInfoXml. */ @Route(Path="/documents/{DocID}/documentinfo", Verbs="GET") @Api(Description="Download DocumentInfoXml.") open class GetDocumentInfoOperation : IReturn { /** * ID of the Document Registration */ @ApiMember(Description="ID of the Document Registration", IsRequired=true) open var DocID:UUID? = null companion object { private val responseType = ByteArray::class.java } override fun getResponseType(): Any? = GetDocumentInfoOperation.responseType }