Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 899 Bytes

File metadata and controls

31 lines (22 loc) · 899 Bytes

DeleteEmail

Properties

Name Type Description Notes
email str
domain str
client_id int

Example

from workplace_client.models.delete_email import DeleteEmail

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

# convert the object into a dict
delete_email_dict = delete_email_instance.to_dict()
# create an instance of DeleteEmail from a dict
delete_email_from_dict = DeleteEmail.from_dict(delete_email_dict)

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