/* Options: Date: 2024-10-18 04:15:47 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: GenerateExcelDocument.* //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 GenerateExcelDocument : IReturn, IGenerateExcelDocument { /** * 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 = 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) var DocumentID:UUID? = null } open interface IGenerateOfficeDocument { var RegisteredDocumentID:UUID? var RecreateDocument:Boolean? var DocumentGeneratorDocumentID:UUID? var DataSourceEntityID:String? } open interface IGenerateExcelDocument : IGenerateOfficeDocument { } open interface IGenerateDocumentResponse { var DocumentID:UUID? } open interface IGenerateExcelDocumentResponse : IGenerateDocumentResponse { }