/* Options: Date: 2024-10-18 04:13:59 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.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.* /** * Generate new or update a (corporate identity) document based on an existing document registration. */ @Api(Description="Generate new or update a (corporate identity) document based on an existing document registration.") open class RepairWordDocument : IReturn, IRepairWordDocument { /** * 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 : IRepairWordDocumentResponse { /** * 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 IRepairWordDocument : IRepairOfficeDocument { } 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? } open interface IRepairWordDocumentResponse : IGenerateDocumentResponse { }