/* Options: Date: 2025-07-04 08:56:23 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GenerateDraftWordDocument.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { /** * Generate a new or update a (corporate identity) MS Word document without registration. */ @Route(Path="/documentgenerator/word/generatedraftdocument", Verbs="POST") @Api(Description="Generate a new or update a (corporate identity) MS Word document without registration.") public static class GenerateDraftWordDocument implements IReturn, IGenerateDraftOfficeDocument { /** * The DocumentInfo result of the registration wizard. */ @ApiMember(Description="The DocumentInfo result of the registration wizard.", IsRequired=true) public String DocumentInfo = null; /** * 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 String CustomData = null; /** * The document to update. */ @ApiMember(Description="The document to update.") public DocumentBase64File File = null; public String getDocumentInfo() { return DocumentInfo; } public GenerateDraftWordDocument setDocumentInfo(String value) { this.DocumentInfo = value; return this; } public String getCustomData() { return CustomData; } public GenerateDraftWordDocument setCustomData(String value) { this.CustomData = value; return this; } public DocumentBase64File getFile() { return File; } public GenerateDraftWordDocument setFile(DocumentBase64File value) { this.File = value; return this; } private static Object responseType = GenerateDraftWordDocumentResponse.class; public Object getResponseType() { return responseType; } } public static class GenerateDraftWordDocumentResponse implements IGenerateDraftDocumentResponse { /** * Contains the file */ @ApiMember(Description="Contains the file") public DocumentBase64File File = null; public DocumentBase64File getFile() { return File; } public GenerateDraftWordDocumentResponse setFile(DocumentBase64File value) { this.File = value; return this; } } public static class DocumentBase64File { public String ContentType = null; public String Content = null; public String getContentType() { return ContentType; } public DocumentBase64File setContentType(String value) { this.ContentType = value; return this; } public String getContent() { return Content; } public DocumentBase64File setContent(String value) { this.Content = value; return this; } } public static interface IGenerateDraftOfficeDocument { public String DocumentInfo = null; public DocumentBase64File File = null; public String CustomData = null; } public static interface IGenerateDraftDocumentResponse { public DocumentBase64File File = null; } }