/* Options: Date: 2024-11-28 09:27:01 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.nl/api //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: RepairWordDocument.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using System.Drawing; using IDB.DocumentGenerator.SDK.Operations.Word; using IDB.DocumentGenerator.SDK.Operations; using IDB.DocumentGenerator.SDK.DTO.General; using IDB.DocumentGenerator.SDK.DTO.Word; namespace IDB.DocumentGenerator.SDK.DTO.General { public partial interface IGenerateDocumentResponse { Guid DocumentID { get; set; } } } namespace IDB.DocumentGenerator.SDK.DTO.Word { public partial interface IRepairWordDocumentResponse : IGenerateDocumentResponse { } public partial class RepairWordDocumentResponse : IRepairWordDocumentResponse { /// ///Contains the registration ID of the generated (corporate identity) document /// [ApiMember(Description="Contains the registration ID of the generated (corporate identity) document", IsRequired=true)] public virtual Guid DocumentID { get; set; } } } namespace IDB.DocumentGenerator.SDK.Operations { public partial interface IRepairOfficeDocument { /// ///ID of the current document registration /// [ApiMember(Description="ID of the current document registration", IsRequired=true)] Guid RegisteredDocumentID { get; set; } } } namespace IDB.DocumentGenerator.SDK.Operations.Word { public partial interface IRepairWordDocument : IRepairOfficeDocument { } /// ///Generate new or update a (corporate identity) document based on an existing document registration. /// [Api(Description="Generate new or update a (corporate identity) document based on an existing document registration.")] public partial class RepairWordDocument : IReturn, IRepairWordDocument { /// ///ID of the current document registration /// [ApiMember(Description="ID of the current document registration", IsRequired=true)] public virtual Guid RegisteredDocumentID { get; set; } } }