/* Options: Date: 2026-03-31 20:15:13 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-dogw.klokgroep.nl/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: RepairWordDocument.* //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.* /** * Repair a (corporate identity) MS Word document based on an existing document registration. */ @Api(Description="Repair a (corporate identity) MS Word document based on an existing document registration.") open class RepairWordDocument : IReturn, IRepairOfficeDocument { /** * ID of the current document registration */ @ApiMember(Description="ID of the current document registration", IsRequired=true) override var RegisteredDocumentID:UUID? = null companion object { private val responseType = RepairWordDocumentResponse::class.java } override fun getResponseType(): Any? = RepairWordDocument.responseType } open class RepairWordDocumentResponse : IGenerateDocumentResponse { /** * Contains the registration ID of the generated (corporate identity) document */ @ApiMember(Description="Contains the registration ID of the generated (corporate identity) document", IsRequired=true) override var DocumentID:UUID? = null } interface IRepairOfficeDocument { /** * ID of the current document registration */ @ApiMember(Description="ID of the current document registration", IsRequired=true) var RegisteredDocumentID:UUID? } interface IGenerateDocumentResponse { var DocumentID:UUID? }