| Name | Type | Description | Notes |
|---|---|---|---|
| str | |||
| alias | str | ||
| domain | str | ||
| client_id | int |
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)