/* Options: Date: 2024-10-18 04:25:59 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.nl/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: RepairWordDocument.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface IRepairWordDocument extends IRepairOfficeDocument { } export interface IRepairOfficeDocument { /** * ID of the current document registration */ // @ApiMember(Description="ID of the current document registration", IsRequired=true) RegisteredDocumentID: string; } export interface IGenerateDocumentResponse { DocumentID: string; } export interface IRepairWordDocumentResponse extends IGenerateDocumentResponse { } export class RepairWordDocumentResponse implements 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 DocumentID: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** * 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.") export class RepairWordDocument implements IReturn, IRepairWordDocument { /** * ID of the current document registration */ // @ApiMember(Description="ID of the current document registration", IsRequired=true) public RegisteredDocumentID: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'RepairWordDocument'; } public getMethod() { return 'POST'; } public createResponse() { return new RepairWordDocumentResponse(); } }