Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.16 KB

File metadata and controls

30 lines (21 loc) · 1.16 KB

Reject

The Reject command blocks an incoming Call. Using Reject is the only way to prevent FreeClimb from answering a Call. Any other response will result in an answered Call and your account will be billed.

Properties

Name Type Description Notes
reason str Reason for the rejection. This can be any string value. In general, applications should use a set of enumerated values that are predefined to cover all exit points of the call flows for the given application. [optional]

Example

from freeclimb.models.reject import Reject

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

# convert the object into a dict
reject_dict = reject_instance.to_dict()
# create an instance of Reject from a dict
reject_from_dict = Reject.from_dict(reject_dict)

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