Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1002 Bytes

GenerateDocumentAsynchronousRequest.md

File metadata and controls

28 lines (22 loc) · 1002 Bytes

PDFGeneratorAPI::GenerateDocumentAsynchronousRequest

Properties

Name Type Description Notes
template TemplateParam [optional]
callback CallbackParam [optional]
format FormatParam [optional][default to 'pdf']
output AsyncOutputParam [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::GenerateDocumentAsynchronousRequest.new(
  template: null,
  callback: null,
  format: null,
  output: null,
  name: Invoice 123,
  testing: false
)