SystemDialPlanPolicyGetRequest22V2
Bases: OCIRequest
Request the system level data associated with Dial Plan Policy. The response is either a SystemDialPlanPolicyGetResponse22V2 or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemDialPlanPolicyGetRequest22V2 The following elements are only used in AS data mode: overrideResolvedDeviceDigitMap The following elements are only used in AS data mode and not returned in XS data mode: deviceDigitMap performInternalTranslationsWithOAC permissiveOACDialing
Attributes:
requires_access_code_for_public_calls (bool):
allow_e164_public_calls (bool):
prefer_e164_number_format_for_callback_services (bool):
public_digit_map (str):
private_digit_map (Optional[str]):
override_resolved_device_digit_map (bool):
device_digit_map (Optional[str]):
perform_internal_translations_with_oac (Optional[bool]):
permissive_oac_dialing (Optional[bool]):
Source code in src/mercury_ocip_fast/commands/commands.py
143906 143907 143908 143909 143910 143911 143912 143913 143914 143915 143916 143917 143918 143919 143920 143921 143922 143923 143924 143925 143926 143927 143928 143929 143930 143931 143932 143933 143934 143935 143936 143937 143938 143939 143940 143941 143942 143943 143944 143945 143946 143947 143948 143949 143950 143951 143952 143953 143954 143955 143956 143957 143958 143959 143960 143961 143962 143963 143964 143965 143966 143967 143968 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemDialPlanPolicyGetRequest22V2
client = Client()
command = SystemDialPlanPolicyGetRequest22V2()
response = client.command(command)
print(response)