Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 877 Bytes

GenerateDocumentRequest.md

File metadata and controls

26 lines (20 loc) · 877 Bytes

PDFGeneratorAPI::GenerateDocumentRequest

Properties

Name Type Description Notes
template TemplateParam [optional]
format FormatParam [optional][default to 'pdf']
output OutputParam [optional][default to 'base64']
name String Generated document name (optional) [optional][default to '']
testing Boolean When set to true the generation is not counted as merge (monthly usage), but a large PREVIEW stamp is added. [optional][default to false]

Example

require 'pdf_generator_api_client'

instance = PDFGeneratorAPI::GenerateDocumentRequest.new(
  template: null,
  format: null,
  output: null,
  name: Invoice 123,
  testing: false
)