Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 931 Bytes

SenderEmail.md

File metadata and controls

30 lines (21 loc) · 931 Bytes

SenderEmail

Properties

Name Type Description Notes
id int Sender email id [optional]
email str Sender email address [optional]

Example

from fattureincloud_python_sdk.models.sender_email import SenderEmail

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

# convert the object into a dict
sender_email_dict = sender_email_instance.to_dict()
# create an instance of SenderEmail from a dict
sender_email_from_dict = SenderEmail.from_dict(sender_email_dict)

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