/* Options: Date: 2025-07-04 08:23:47 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GenerateDraftWordDocument.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class DocumentBase64File { public ContentType: string; public Content: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IGenerateDraftOfficeDocument { DocumentInfo: string; File: DocumentBase64File; CustomData: string; } export interface IGenerateDraftDocumentResponse { File: DocumentBase64File; } export class GenerateDraftWordDocumentResponse implements IGenerateDraftDocumentResponse { /** @description Contains the file */ // @ApiMember(Description="Contains the file") public File: DocumentBase64File; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description Generate a new or update a (corporate identity) MS Word document without registration. */ // @Route("/documentgenerator/word/generatedraftdocument", "POST") // @Api(Description="Generate a new or update a (corporate identity) MS Word document without registration.") export class GenerateDraftWordDocument implements IReturn, IGenerateDraftOfficeDocument { /** @description The DocumentInfo result of the registration wizard. */ // @ApiMember(Description="The DocumentInfo result of the registration wizard.", IsRequired=true) public DocumentInfo: string; /** @description 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. */ // @ApiMember(Description="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.") public CustomData: string; /** @description The document to update. */ // @ApiMember(Description="The document to update.") public File: DocumentBase64File; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GenerateDraftWordDocument'; } public getMethod() { return 'POST'; } public createResponse() { return new GenerateDraftWordDocumentResponse(); } }