/* Options: Date: 2025-07-04 08:24:57 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: GenerateWordPrintableDocument.* //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 enum PrintLogoStyle { Colour = 'Colour', Invisible = 'Invisible', } export class WordPageSetup { public FirstPageTray: number; public OtherPagesTray: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IRegisteredDocumentRequest { RegisteredDocumentID: string; } export interface IGenerateDraftDocumentResponse { File: DocumentBase64File; } export class GenerateWordPrintableDocumentResponse implements IGenerateDraftDocumentResponse { /** @description The file to print */ // @ApiMember(Description="The file to print") public File: DocumentBase64File; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description Generate a (corporate identity) printable document based on an existing document registration or working file. */ // @Route("/documentgenerator/word/generateprintabledocument", "POST") // @Api(Description="Generate a (corporate identity) printable document based on an existing document registration or working file.") export class GenerateWordPrintableDocument implements IReturn, IRegisteredDocumentRequest { /** @description ID of the current document registration */ // @ApiMember(Description="ID of the current document registration", IsRequired=true) public RegisteredDocumentID: string; /** @description The unsaved active document to print instead of the saved document. */ // @ApiMember(Description="The unsaved active document to print instead of the saved document.") public WorkingFile: DocumentBase64File; /** @description When printing on stationary use PrintLogoStyle.Hidden to remove subsidary logo's from the document */ // @ApiMember(Description="When printing on stationary use PrintLogoStyle.Hidden to remove subsidary logo's from the document") public LogoStyle: PrintLogoStyle; /** @description Represents a subset of the page setup properties of a section. */ // @ApiMember(Description="Represents a subset of the page setup properties of a section.") public PageSetup: WordPageSetup; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GenerateWordPrintableDocument'; } public getMethod() { return 'POST'; } public createResponse() { return new GenerateWordPrintableDocumentResponse(); } }