Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.27 KB

SupervisorRequest.md

File metadata and controls

32 lines (23 loc) · 1.27 KB

SupervisorRequest

Properties

Name Type Description Notes
name str Name of the supervisor
phone str E.164 formatted phone number of supervisor.
priority int Priority of supervisor in the queue
organization int Current organization id. Can be found in the Callchimp Settings -> Organization tab -> Org ID Column. [optional]

Example

from callchimp.models.supervisor_request import SupervisorRequest

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

# convert the object into a dict
supervisor_request_dict = supervisor_request_instance.to_dict()
# create an instance of SupervisorRequest from a dict
supervisor_request_from_dict = SupervisorRequest.from_dict(supervisor_request_dict)

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