An Email Object
Name | Type | Description | Notes |
---|---|---|---|
pki_email_id | int | The unique ID of the Email | [optional] |
fki_emailtype_id | int | The unique ID of the Emailtype. Valid values: | Value |
s_email_address | str | The email address. |
from eZmaxApi.models.email_request import EmailRequest
# TODO update the JSON string below
json = "{}"
# create an instance of EmailRequest from a JSON string
email_request_instance = EmailRequest.from_json(json)
# print the JSON string representation of the object
print(EmailRequest.to_json())
# convert the object into a dict
email_request_dict = email_request_instance.to_dict()
# create an instance of EmailRequest from a dict
email_request_from_dict = EmailRequest.from_dict(email_request_dict)