Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 970 Bytes

File metadata and controls

29 lines (20 loc) · 970 Bytes

UpdateCallRequest

Properties

Name Type Description Notes
status UpdateCallRequestStatus

Example

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)

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