Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 642 Bytes

CallbackParam.md

File metadata and controls

20 lines (14 loc) · 642 Bytes

PDFGeneratorAPI::CallbackParam

Properties

Name Type Description Notes
url String Public callback URL that is used to make a POST request when the document is generated. [optional]
headers Object A key-value pairs of header values sent with the POST request. [optional]

Example

require 'pdf_generator_api_client'

instance = PDFGeneratorAPI::CallbackParam.new(
  url: https://example.org/document-callback,
  headers: {"Content-type":"application/pdf","Authorization":"Bearer ABCDE12345678"}
)