(* Options: Date: 2025-09-13 22:27:09 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: RepairWordDocument.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace IDB.DocumentGenerator.SDK.DTO.General open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Drawing [] type IRepairOfficeDocument = /// ///ID of the current document registration /// [] abstract RegisteredDocumentID:Guid with get,set [] type IGenerateDocumentResponse = abstract DocumentID:Guid with get,set [] type RepairWordDocumentResponse() = /// ///Contains the registration ID of the generated (corporate identity) document /// [] member val DocumentID:Guid = new Guid() with get,set /// ///Repair a (corporate identity) MS Word document based on an existing document registration. /// [] [] type RepairWordDocument() = interface IReturn /// ///ID of the current document registration /// [] member val RegisteredDocumentID:Guid = new Guid() with get,set