/* Options: Date: 2025-07-04 10:31:03 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: RepairWordDocument.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* 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) 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) var DocumentID:UUID? = null } open interface IRepairOfficeDocument { /** * ID of the current document registration */ @ApiMember(Description="ID of the current document registration", IsRequired=true) var RegisteredDocumentID:UUID? } open interface IGenerateDocumentResponse { var DocumentID:UUID? }