Sends the generated document via HTTP POST request to the specified URL.
| Name | Type | Description | Notes |
|---|---|---|---|
| send_document | FormActionSendSendDocument | [optional] |
from pdf_generator_api_client.models.form_action_send import FormActionSend
# TODO update the JSON string below
json = "{}"
# create an instance of FormActionSend from a JSON string
form_action_send_instance = FormActionSend.from_json(json)
# print the JSON string representation of the object
print(FormActionSend.to_json())
# convert the object into a dict
form_action_send_dict = form_action_send_instance.to_dict()
# create an instance of FormActionSend from a dict
form_action_send_from_dict = FormActionSend.from_dict(form_action_send_dict)