/* Options: Date: 2026-03-31 17:10:23 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-do-services.klokgroep.nl/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GenerateDraftPowerPointDocument.* //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 GenerateDraftPowerPointDocumentResponse 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 PowerPoint document without registration. */ // @Route("/documentgenerator/powerpoint/generatedraftdocument", "POST") // @Api(Description="Generate a new or update a (corporate identity) MS PowerPoint document without registration.") export class GenerateDraftPowerPointDocument 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 'GenerateDraftPowerPointDocument'; } public getMethod() { return 'POST'; } public createResponse() { return new GenerateDraftPowerPointDocumentResponse(); } }