| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | [optional] | |
| deleted | bool | [optional] | |
| parent_id | str | [optional] | |
| parent_name | str | [optional] |
from clientapi_atrocore.models.call import Call
# TODO update the JSON string below
json = "{}"
# create an instance of Call from a JSON string
call_instance = Call.from_json(json)
# print the JSON string representation of the object
print Call.to_json()
# convert the object into a dict
call_dict = call_instance.to_dict()
# create an instance of Call from a dict
call_form_dict = call.from_dict(call_dict)