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

Name Type Description Notes
send_document FormActionSendSendDocument [optional]

Example

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)

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