Skip to content

Latest commit

History

History
31 lines (22 loc) · 1.08 KB

File metadata and controls

31 lines (22 loc) · 1.08 KB

CallbackParam

Callback URL and optional headers

Properties

NameTypeDescriptionNotes
urlstrPublic callback URL that is used to make a POST request when the document is generated.[optional]
headersobjectA key-value pairs of header values sent with the POST request.[optional]

Example

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)

[Back to Model list][Back to API list][Back to README]