Skip to content

Latest commit

History

History
30 lines (21 loc) · 1.02 KB

File metadata and controls

30 lines (21 loc) · 1.02 KB

FormActionSend

Sends the generated document via HTTP POST request to the specified URL.

Properties

NameTypeDescriptionNotes
send_documentFormActionSendSendDocument[optional]

Example

frompdf_generator_api_client.models.form_action_sendimportFormActionSend# TODO update the JSON string belowjson="{}"# create an instance of FormActionSend from a JSON stringform_action_send_instance=FormActionSend.from_json(json)
# print the JSON string representation of the objectprint(FormActionSend.to_json())
# convert the object into a dictform_action_send_dict=form_action_send_instance.to_dict()
# create an instance of FormActionSend from a dictform_action_send_from_dict=FormActionSend.from_dict(form_action_send_dict)

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