/* Options: Date: 2025-07-04 10:00:50 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: GenerateWordDocument.* //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 GenerateWordDocument : IReturn, IGenerateOfficeDocument { /** * ID of the current document registration */ @ApiMember(Description="ID of the current document registration", IsRequired=true) var RegisteredDocumentID:UUID? = null /** * Recreate document */ @ApiMember(Description="Recreate document", IsRequired=true) var RecreateDocument:Boolean? = null /** * ID of the document generator configuration */ @ApiMember(Description="ID of the document generator configuration") 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.") var DataSourceEntityID:String? = null companion object { private val responseType = GenerateWordDocumentResponse::class.java } override fun getResponseType(): Any? = GenerateWordDocument.responseType } open class GenerateWordDocumentResponse : IGenerateDocumentResponse { /** * Contains the registration ID of the generated (corporate identity) document */ @ApiMember(Description="Contains the registration ID of the generated (corporate identity) document") var DocumentID:UUID? = null } open interface IGenerateOfficeDocument { var RegisteredDocumentID:UUID? var RecreateDocument:Boolean? var DocumentGeneratorDocumentID:UUID? var DataSourceEntityID:String? } open interface IGenerateDocumentResponse { var DocumentID:UUID? }