Callback URL and optional headers
| Name | Type | Description | Notes |
|---|---|---|---|
| url | str | 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] |
frompdf_generator_api_client.models.callback_paramimportCallbackParam# TODO update the JSON string belowjson="{}"# create an instance of CallbackParam from a JSON stringcallback_param_instance=CallbackParam.from_json(json)
# print the JSON string representation of the objectprint(CallbackParam.to_json())
# convert the object into a dictcallback_param_dict=callback_param_instance.to_dict()
# create an instance of CallbackParam from a dictcallback_param_from_dict=CallbackParam.from_dict(callback_param_dict)