SystemDialPlanPolicyGetAccessCodeListRequest
Bases: OCIRequest
Request the system level Access Codes data associated with Dial Plan Policy. The response is either a SystemDialPlanPolicyGetAccessCodeListResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemDialPlanPolicyGetAccessCodeListRequest. Contains a table with column headings: "Access Code", "Enable Secondary Dial Tone", "Description"
Attributes:
access_code_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemDialPlanPolicyGetAccessCodeListRequest
client = Client()
command = SystemDialPlanPolicyGetAccessCodeListRequest()
response = client.command(command)
print(response)