(* Options: Date: 2026-03-31 18:35:15 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-do-services.klokgroep.nl/api //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GenerateDraftPowerPointDocument.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace IDB.DocumentGenerator.SDK.DTO open System open System.IO 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 GenerateDraftPowerPointDocumentResponse() = /// ///Contains the file /// [] member val File:DocumentBase64File = null with get,set /// ///Generate a new or update a (corporate identity) MS PowerPoint document without registration. /// [] [] [] type GenerateDraftPowerPointDocument() = 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