/* Options: Date: 2026-03-31 19:59:41 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: GenerateExcelDocument.* //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.* /** * 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 GenerateExcelDocument : IReturn, IGenerateOfficeDocument { /** * ID of the current document registration */ @ApiMember(Description="ID of the current document registration", IsRequired=true) override var RegisteredDocumentID:UUID? = null /** * Recreate document */ @ApiMember(Description="Recreate document", IsRequired=true) override var RecreateDocument:Boolean? = null /** * ID of the document generator configuration */ @ApiMember(Description="ID of the document generator configuration") override var DocumentGeneratorDocumentID:UUID? = null /** * ID of the entity (corresponding to the entityType configured at the DocumentGeneratorDocument) to use as the datasource. Leave blank to fall back on the current document registration. */ @ApiMember(Description="ID of the entity (corresponding to the entityType configured at the DocumentGeneratorDocument) to use as the datasource. Leave blank to fall back on the current document registration.") override var DataSourceEntityID:String? = null companion object { private val responseType = GenerateExcelDocumentResponse::class.java } override fun getResponseType(): Any? = GenerateExcelDocument.responseType } open class GenerateExcelDocumentResponse : IGenerateExcelDocumentResponse { /** * Contains the registration ID of the generated (corporate identity) document */ @ApiMember(Description="Contains the registration ID of the generated (corporate identity) document", IsRequired=true) open var DocumentID:UUID? = null } interface IGenerateOfficeDocument { var RegisteredDocumentID:UUID? var RecreateDocument:Boolean? var DocumentGeneratorDocumentID:UUID? var DataSourceEntityID:String? } interface IGenerateDocumentResponse { var DocumentID:UUID? } interface IGenerateExcelDocumentResponse : IGenerateDocumentResponse { }