Name |
Type |
Description |
Notes |
recipient_email |
str |
Recipient's email |
[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 |
By default is the logged company email. This is the email address to which a copy will be sent. |
[optional] |
subject |
str |
Email subject |
[optional] |
body |
str |
Email body |
[optional] |
document_exists |
bool |
If the document is not a delivery note, this flag will be set to true |
[optional] |
delivery_note_exists |
bool |
If the document is a delivery note, this flag will be set to true |
[optional] |
attachment_exists |
bool |
If the document has one or more attachments, this flag will be set to true |
[optional] |
accompanying_invoice_exists |
bool |
If an accompanying invoice exists, this flag will be set to true |
[optional] |
default_attach_pdf |
bool |
If a pdf is attached, this flag will be set to true |
[optional] |
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_form_dict = email_data.from_dict(email_data_dict)
[Back to Model list] [Back to API list] [Back to README]