Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 906 Bytes

EmailError.md

File metadata and controls

31 lines (22 loc) · 906 Bytes

EmailError

Properties

Name Type Description Notes
email str [optional]
error str [optional]
token str [optional]

Example

from akeyless.models.email_error import EmailError

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

# convert the object into a dict
email_error_dict = email_error_instance.to_dict()
# create an instance of EmailError from a dict
email_error_from_dict = EmailError.from_dict(email_error_dict)

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