' Options:
'Date: 2026-03-31 21:29:10
'Version: 8.80
'Tip: To override a DTO option, remove "''" prefix before updating
'BaseUrl: https://test-do-services.klokgroep.nl/api
'
'''GlobalNamespace:
'''MakePartial: True
'''MakeVirtual: True
'''MakeDataContractsExtensible: False
'''AddReturnMarker: True
'''AddDescriptionAsComments: True
'''AddDataContractAttributes: False
'''AddIndexesToDataMembers: False
'''AddGeneratedCodeAttributes: False
'''AddResponseStatus: False
'''AddImplicitVersion:
'''InitializeCollections: False
'''ExportValueTypes: False
'IncludeTypes: GenerateDraftExcelDocument.*
'''ExcludeTypes:
'''AddNamespaces:
'''AddDefaultXmlNamespace: http://schemas.servicestack.net/types
Imports System
Imports System.IO
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports System.Drawing
Imports IDB.DocumentGenerator.SDK.DTO
Imports IDB.DocumentGenerator.SDK.Operations
Imports IDB.DocumentGenerator.SDK.DTO.General
Imports IDB.DocumentGenerator.SDK.Operations.Excel
Imports IDB.DocumentGenerator.SDK.DTO.Excel
Namespace Global
Namespace IDB.DocumentGenerator.SDK.DTO
Public Partial Class DocumentBase64File
Public Overridable Property ContentType As String
Public Overridable Property Content As String
End Class
End Namespace
Namespace IDB.DocumentGenerator.SDK.DTO.Excel
Public Partial Class GenerateDraftExcelDocumentResponse
Implements IGenerateDraftDocumentResponse
'''
'''Contains the file
'''
Public Overridable Property File As DocumentBase64File Implements IGenerateDraftDocumentResponse.File
End Class
End Namespace
Namespace IDB.DocumentGenerator.SDK.DTO.General
Public Interface IGenerateDraftDocumentResponse
Property File As DocumentBase64File
End Interface
End Namespace
Namespace IDB.DocumentGenerator.SDK.Operations
Public Interface IGenerateDraftOfficeDocument
Property DocumentInfo As String
Property File As DocumentBase64File
Property CustomData As String
End Interface
End Namespace
Namespace IDB.DocumentGenerator.SDK.Operations.Excel
'''
'''Generate a new or update a (corporate identity) MS Excel document without registration.
'''
Public Partial Class GenerateDraftExcelDocument
Implements IReturn(Of GenerateDraftExcelDocumentResponse)
Implements IGenerateDraftOfficeDocument
'''
'''The DocumentInfo result of the registration wizard.
'''
Public Overridable Property DocumentInfo As String Implements IGenerateDraftOfficeDocument.DocumentInfo
'''
'''Hier kan de (dynamische) data voor het document geplaatst worden, de data kan middels tekstblokken en placeholders worden geplaatst.Het formaat binnen CustomData staat vrij maar vereist een 'root' element.
'''
Public Overridable Property CustomData As String Implements IGenerateDraftOfficeDocument.CustomData
'''
'''The document to update.
'''
Public Overridable Property File As DocumentBase64File Implements IGenerateDraftOfficeDocument.File
End Class
End Namespace
End Namespace