Simple verification file result info
| Name | Type | Description | Notes |
|---|---|---|---|
| verification_id | str | Identifier of this verification result | [optional] |
| filename | str | Origin file name | [optional] |
| verification_status | VerificationStatus | [optional] | |
| file_upload_result | FileUploadResult | [optional] | |
| date_added | datetime | Date of creation in YYYY-MM-DDThh:ii:ss format | [optional] |
| source | str | Origin file extension | [optional] |
from ElasticEmail.models.verification_file_result import VerificationFileResult
# TODO update the JSON string below
json = "{}"
# create an instance of VerificationFileResult from a JSON string
verification_file_result_instance = VerificationFileResult.from_json(json)
# print the JSON string representation of the object
print(VerificationFileResult.to_json())
# convert the object into a dict
verification_file_result_dict = verification_file_result_instance.to_dict()
# create an instance of VerificationFileResult from a dict
verification_file_result_from_dict = VerificationFileResult.from_dict(verification_file_result_dict)