PDFDocumentRequestDto Data Type

A Dto holding information required to generate the document pdf file.

Implemented Interfaces
Serializable
Properties
name data type description
listTemplates array of PDFTemplateDto Gets the list templates.
documentDestinationDir string Gets the document destination dir.
documentNamePrefix string Gets the document name prefix.
returnPdf boolean
absolutePaths boolean
combineFiles boolean
flattened boolean

Example

{
  "listTemplates" : [ {
    "templateFields" : {
      "property1" : "...",
      "property2" : "..."
    },
    "templatePath" : "...",
    "barCodeFields" : [ "...", "..." ],
    "templateName" : "..."
  }, {
    "templateFields" : {
      "property1" : "...",
      "property2" : "..."
    },
    "templatePath" : "...",
    "barCodeFields" : [ "...", "..." ],
    "templateName" : "..."
  } ],
  "documentDestinationDir" : "...",
  "documentNamePrefix" : "...",
  "returnPdf" : true,
  "absolutePaths" : true,
  "combineFiles" : true,
  "flattened" : true
}