Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.09 KB

File metadata and controls

29 lines (20 loc) · 1.09 KB

Unpark

The Unpark command resumes a parked call. Execution continues with the first command in the PerCL scripted returned by the actionUrl specified in the Park command as long as the call is still in progress. If the call is no longer in progress, any returned PerCL will not be executed. Unpark is a terminal command -- any commands following it in the same script are not executed.

Properties

Name Type Description Notes

Example

from freeclimb.models.unpark import Unpark

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

# convert the object into a dict
unpark_dict = unpark_instance.to_dict()
# create an instance of Unpark from a dict
unpark_from_dict = Unpark.from_dict(unpark_dict)

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