Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 925 Bytes

File metadata and controls

32 lines (23 loc) · 925 Bytes

DeleteAlias

Properties

Name Type Description Notes
email str
alias str
domain str
client_id int

Example

from workplace_client.models.delete_alias import DeleteAlias

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

# convert the object into a dict
delete_alias_dict = delete_alias_instance.to_dict()
# create an instance of DeleteAlias from a dict
delete_alias_from_dict = DeleteAlias.from_dict(delete_alias_dict)

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