SystemSIPDiversionReasonGetRequest
Bases: OCIRequest
Request to get the list of SIP Diversion Cause values. The response is either a SystemSIPDiversionReasonGetResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemSIPDiversionReasonGetRequest. Contains a table containing a list of diversion reasons and associated cause values. The column headings are: "Diversion Reaon", "Cause Value".
Attributes:
diversion_reason_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemSIPDiversionReasonGetRequest
client = Client()
command = SystemSIPDiversionReasonGetRequest()
response = client.command(command)
print(response)