Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.66 KB

EmailData.md

File metadata and controls

39 lines (30 loc) · 1.66 KB

EmailData

Properties

Name Type Description Notes
recipient_email str Email recipient [optional]
default_sender_email EmailDataDefaultSenderEmail [optional]
sender_emails_list List[SenderEmail] List of all emails from which the document can be sent [optional]
cc_email str Email cc [by default is the logged company email] [optional]
subject str Email subject [optional]
body str Email body [optional]
document_exists bool Document exists if it is not a delivery note [optional]
delivery_note_exists bool Document is a delivery note [optional]
attachment_exists bool Document has attachment [optional]
accompanying_invoice_exists bool Document has accompanying invoice [optional]
default_attach_pdf bool Attach document pdf [optional]

Example

from fattureincloud_python_sdk.models.email_data import EmailData

# TODO update the JSON string below
json = "{}"
# create an instance of EmailData from a JSON string
email_data_instance = EmailData.from_json(json)
# print the JSON string representation of the object
print(EmailData.to_json())

# convert the object into a dict
email_data_dict = email_data_instance.to_dict()
# create an instance of EmailData from a dict
email_data_from_dict = EmailData.from_dict(email_data_dict)

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