| Name | Type | Description | Notes |
|---|---|---|---|
| status | UpdateCallRequestStatus |
from freeclimb.models.update_call_request import UpdateCallRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateCallRequest from a JSON string
update_call_request_instance = UpdateCallRequest.from_json(json)
# print the JSON string representation of the object
print(UpdateCallRequest.to_json())
# convert the object into a dict
update_call_request_dict = update_call_request_instance.to_dict()
# create an instance of UpdateCallRequest from a dict
update_call_request_from_dict = UpdateCallRequest.from_dict(update_call_request_dict)