' Options:
'Date: 2025-07-04 10:12:16
'Version: 6.110
'Tip: To override a DTO option, remove "''" prefix before updating
'BaseUrl: https://doapigw.baasbv.nl/api
'
'''GlobalNamespace:
'''MakePartial: True
'''MakeVirtual: True
'''MakeDataContractsExtensible: False
'''AddReturnMarker: True
'''AddDescriptionAsComments: True
'''AddDataContractAttributes: False
'''AddIndexesToDataMembers: False
'''AddGeneratedCodeAttributes: False
'''AddResponseStatus: False
'''AddImplicitVersion:
'''InitializeCollections: True
'''ExportValueTypes: False
'IncludeTypes: GenerateDraftWordDocument.*
'''ExcludeTypes:
'''AddNamespaces:
'''AddDefaultXmlNamespace: http://schemas.servicestack.net/types
Imports System
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.Word
Imports IDB.DocumentGenerator.SDK.DTO.Word
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.General
Public Interface IGenerateDraftDocumentResponse
Property File As DocumentBase64File
End Interface
End Namespace
Namespace IDB.DocumentGenerator.SDK.DTO.Word
Public Partial Class GenerateDraftWordDocumentResponse
Implements IGenerateDraftDocumentResponse
'''
'''Contains the file
'''
Public Overridable Property File As DocumentBase64File
End Class
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.Word
'''
'''Generate a new or update a (corporate identity) MS Word document without registration.
'''
Public Partial Class GenerateDraftWordDocument
Implements IReturn(Of GenerateDraftWordDocumentResponse)
Implements IGenerateDraftOfficeDocument
'''
'''The DocumentInfo result of the registration wizard.
'''
Public Overridable Property DocumentInfo As String
'''
'''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
'''
'''The document to update.
'''
Public Overridable Property File As DocumentBase64File
End Class
End Namespace
End Namespace