(* Options: Date: 2025-07-04 10:38:47 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GenerateDraftWordDocument.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace IDB.DocumentGenerator.SDK.DTO open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Drawing [] type DocumentBase64File() = member val ContentType:String = null with get,set member val Content:String = null with get,set [] type IGenerateDraftOfficeDocument = abstract DocumentInfo:String with get,set abstract File:DocumentBase64File with get,set abstract CustomData:String with get,set [] type IGenerateDraftDocumentResponse = abstract File:DocumentBase64File with get,set [] type GenerateDraftWordDocumentResponse() = /// ///Contains the file /// [] member val File:DocumentBase64File = null with get,set /// ///Generate a new or update a (corporate identity) MS Word document without registration. /// [] [] [] type GenerateDraftWordDocument() = interface IReturn /// ///The DocumentInfo result of the registration wizard. /// [] member val DocumentInfo:String = null with get,set /// ///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. /// [] member val CustomData:String = null with get,set /// ///The document to update. /// [] member val File:DocumentBase64File = null with get,set