SystemDialPlanPolicyGetAccessCodeRequest
Bases: OCIRequest
Request access code data associated with system level Dial Plan Policy access codes. The response is either a SystemDialPlanPolicyGetAccessCodeResponse or an ErrorResponse.
Attributes:
access_code (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemDialPlanPolicyGetAccessCodeRequest
Attributes:
include_code_for_network_translations_and_routing (bool):
include_code_for_screening_services (bool):
enable_secondary_dial_tone (bool):
description (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemDialPlanPolicyGetAccessCodeRequest
client = Client()
command = SystemDialPlanPolicyGetAccessCodeRequest(
access_code=...,
)
response = client.command(command)
print(response)