Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.17 KB

File metadata and controls

32 lines (23 loc) · 1.17 KB

InboundCallResponseSupervisor

Properties

Name Type Description Notes
id int [optional]
name str [optional]
phone str [optional]
priority int [optional]

Example

from callchimp.models.inbound_call_response_supervisor import InboundCallResponseSupervisor

# TODO update the JSON string below
json = "{}"
# create an instance of InboundCallResponseSupervisor from a JSON string
inbound_call_response_supervisor_instance = InboundCallResponseSupervisor.from_json(json)
# print the JSON string representation of the object
print(InboundCallResponseSupervisor.to_json())

# convert the object into a dict
inbound_call_response_supervisor_dict = inbound_call_response_supervisor_instance.to_dict()
# create an instance of InboundCallResponseSupervisor from a dict
inbound_call_response_supervisor_from_dict = InboundCallResponseSupervisor.from_dict(inbound_call_response_supervisor_dict)

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