Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Latest commit

 

History

History
31 lines (23 loc) · 877 Bytes

File metadata and controls

31 lines (23 loc) · 877 Bytes

Call

Properties

Name Type Description Notes
id str [optional]
deleted bool [optional]
parent_id str [optional]
parent_name str [optional]

Example

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)

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