/* Options:
Date: 2025-10-31 06:52:32
Version: 6.110
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://doapigw.baasbv.nl/api
//GlobalNamespace: 
//MakePartial: True
//MakeVirtual: True
//MakeInternal: False
//MakeDataContractsExtensible: False
//AddNullableAnnotations: False
//AddReturnMarker: True
//AddDescriptionAsComments: True
//AddDataContractAttributes: False
//AddIndexesToDataMembers: False
//AddGeneratedCodeAttributes: False
//AddResponseStatus: False
//AddImplicitVersion: 
//InitializeCollections: True
//ExportValueTypes: False
IncludeTypes: GenerateWordPrintableDocument.*
//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.DTO;
using IDB.DocumentGenerator.SDK.DTO.Word;
using IDB.DocumentGenerator.SDK.DTO.General;
using IDB.DocumentGenerator.SDK.Operations.Word;
namespace IDB.DocumentGenerator.SDK.DTO
{
    public partial class DocumentBase64File
    {
        public virtual string ContentType { get; set; }
        public virtual string Content { get; set; }
    }
    public partial interface IRegisteredDocumentRequest
    {
        Guid RegisteredDocumentID { get; set; }
    }
    public enum PrintLogoStyle
    {
        Colour,
        Invisible,
    }
}
namespace IDB.DocumentGenerator.SDK.DTO.General
{
    public partial interface IGenerateDraftDocumentResponse
    {
        DocumentBase64File File { get; set; }
    }
}
namespace IDB.DocumentGenerator.SDK.DTO.Word
{
    public partial class GenerateWordPrintableDocumentResponse
        : IGenerateDraftDocumentResponse
    {
        ///
        ///The file to print
        ///
        [ApiMember(Description="The file to print")]
        public virtual DocumentBase64File File { get; set; }
    }
    public partial class WordPageSetup
    {
        public virtual int FirstPageTray { get; set; }
        public virtual int OtherPagesTray { get; set; }
    }
}
namespace IDB.DocumentGenerator.SDK.Operations.Word
{
    ///
    ///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.")]
    public partial class GenerateWordPrintableDocument
        : IReturn, IRegisteredDocumentRequest
    {
        ///
        ///ID of the current document registration
        ///
        [ApiMember(Description="ID of the current document registration", IsRequired=true)]
        public virtual Guid RegisteredDocumentID { get; set; }
        ///
        ///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 virtual DocumentBase64File WorkingFile { get; set; }
        ///
        ///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 virtual PrintLogoStyle LogoStyle { get; set; }
        ///
        ///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 virtual WordPageSetup PageSetup { get; set; }
    }
}