SystemTrunkGroupGetRequest24
Bases: OCIRequest
Request the system level data associated with the Trunk Group service. The response is either SystemTrunkGroupGetResponse24 or ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemTrunkGroupGetRequest24. Following attributes are only used in IMS mode: implicitRegistrationSetSupportPolicy sipIdentityForPilotAndProxyTrunkModesPolicy useMostRecentEntryOnDeflection
Attributes:
enforce_clid_service_assignment_for_pilot_user (bool):
terminate_unreachable_trigger_detection_on_receipt_of18x (bool):
pilot_user_calling_line_asserted_identity_policy (str):
enforce_out_of_dialog_pbx_redirection_policies (bool):
unscreened_redirection_handling (str):
enable_holdover_of_highwater_call_counts (bool):
holdover_period (int):
time_zone_offset_minutes (int):
clid_source_for_screened_calls_policy (str):
user_lookup_policy (str):
out_of_dialog_pbx_redirection_clid_mapping (str):
enforce_out_of_dialog_pbx_redirection_trunk_group_capacity (bool):
implicit_registration_set_support_policy (str):
sip_identity_for_pilot_and_proxy_trunk_modes_policy (str):
support_connected_identity_policy (str):
use_unmapped_sessions_for_trunk_users (bool):
allow_pai_lookup_for_out_of_dialog_pbx_redirection (bool):
out_of_dialog_pbx_redirection_originator_lookup_policy (str):
allow_trunk_identity_for_all_originations (bool):
use_most_recent_entry_on_deflection (bool):
Source code in src/mercury_ocip/commands/commands.py
149844 149845 149846 149847 149848 149849 149850 149851 149852 149853 149854 149855 149856 149857 149858 149859 149860 149861 149862 149863 149864 149865 149866 149867 149868 149869 149870 149871 149872 149873 149874 149875 149876 149877 149878 149879 149880 149881 149882 149883 149884 149885 149886 149887 149888 149889 149890 149891 149892 149893 149894 149895 149896 149897 149898 149899 149900 149901 149902 149903 149904 149905 149906 149907 149908 149909 149910 149911 149912 149913 149914 149915 149916 149917 149918 149919 149920 149921 149922 149923 149924 149925 149926 149927 149928 149929 149930 149931 149932 149933 149934 149935 149936 149937 149938 149939 149940 149941 149942 149943 149944 149945 149946 149947 149948 149949 149950 149951 149952 149953 149954 149955 149956 149957 149958 149959 149960 149961 149962 149963 149964 149965 149966 149967 149968 | |
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemTrunkGroupGetRequest24
client = Client()
command = SystemTrunkGroupGetRequest24()
response = client.command(command)
print(response)