Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

File metadata and controls

30 lines (21 loc) · 1.04 KB

FileUploadResult

Properties

Name Type Description Notes
emails_count int How many unique emails were detected the file [optional]
duplicated_emails_count int How many email duplicates were detected [optional]

Example

from ElasticEmail.models.file_upload_result import FileUploadResult

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

# convert the object into a dict
file_upload_result_dict = file_upload_result_instance.to_dict()
# create an instance of FileUploadResult from a dict
file_upload_result_from_dict = FileUploadResult.from_dict(file_upload_result_dict)

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