Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.25 KB

File metadata and controls

39 lines (30 loc) · 1.25 KB

RunEmailTaskVM

Properties

Name Type Description Notes
body str [optional]
enable_ssl bool [optional]
var_from str [optional]
is_body_html bool [optional]
password str [optional]
port int [optional]
server str [optional]
subject str [optional]
to List[str]
username str [optional]
t str

Example

from fastreport_cloud_sdk.models.run_email_task_vm import RunEmailTaskVM

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

# convert the object into a dict
run_email_task_vm_dict = run_email_task_vm_instance.to_dict()
# create an instance of RunEmailTaskVM from a dict
run_email_task_vm_form_dict = run_email_task_vm.from_dict(run_email_task_vm_dict)

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