Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1015 Bytes

ScheduleEmailRequest.md

File metadata and controls

29 lines (20 loc) · 1015 Bytes

ScheduleEmailRequest

Properties

Name Type Description Notes
data EmailSchedule [optional]

Example

from fattureincloud_python_sdk.models.schedule_email_request import ScheduleEmailRequest

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

# convert the object into a dict
schedule_email_request_dict = schedule_email_request_instance.to_dict()
# create an instance of ScheduleEmailRequest from a dict
schedule_email_request_form_dict = schedule_email_request.from_dict(schedule_email_request_dict)

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