SystemCallProcessingPolicyProfileVoiceXMLProfileGetRequest22V2
Bases: OCIRequest
Request to get the configuration for a call processing policy profile VoiceXML subscriber type profile. The response is either a SystemCallProcessingPolicyProfileVoiceXMLProfileGetResponse22V2 or an ErrorResponse.
Attributes:
call_processing_policy_profile_name (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemCallProcessingPolicyProfileVoiceXMLProfileGetRequest22V2. The following elements are only used in AS data mode: useMaxCallsPerSecond, value "false" is returned in XS data mode. maxCallsPerSecond, value "1" is returned in XS data mode.
Attributes:
use_clid_policy (bool):
clid_policy (str):
emergency_clid_policy (str):
allow_alternate_numbers_for_redirecting_identity (bool):
use_group_name (bool):
block_calling_name_for_external_calls (bool):
allow_configurable_clid_for_redirecting_identity (bool):
allow_department_clid_name_override (bool):
enterprise_calls_clid_policy (str):
enterprise_group_calls_clid_policy (str):
service_provider_group_calls_clid_policy (str):
use_call_limits_policy (bool):
use_max_simultaneous_calls (bool):
max_simultaneous_calls (int):
use_max_simultaneous_video_calls (bool):
max_simultaneous_video_calls (int):
use_max_call_time_for_answered_calls (bool):
max_call_time_for_answered_calls_minutes (int):
use_max_call_time_for_unanswered_calls (bool):
max_call_time_for_unanswered_calls_minutes (int):
use_max_concurrent_redirected_calls (bool):
max_concurrent_redirected_calls (int):
max_redirection_depth (int):
use_translation_routing_policy (bool):
network_usage_selection (str):
enable_enterprise_extension_dialing (bool):
enforce_group_calling_line_identity_restriction (bool):
enforce_enterprise_calling_line_identity_restriction (bool):
allow_enterprise_group_call_typing_for_private_dialing_plan (bool):
allow_enterprise_group_call_typing_for_public_dialing_plan (bool):
override_clid_restriction_for_private_call_category (bool):
use_enterprise_clid_for_private_call_category (bool):
use_incoming_clid_policy (bool):
enable_dialable_caller_id (bool):
include_redirections_in_maximum_number_of_concurrent_calls (bool):
use_user_phone_number_for_group_calls_when_internal_clid_unavailable (bool):
use_user_phone_number_for_enterprise_calls_when_internal_clid_unavailable (bool):
use_max_calls_per_second (bool):
max_calls_per_second (int):
Source code in src/mercury_ocip/commands/commands.py
141737 141738 141739 141740 141741 141742 141743 141744 141745 141746 141747 141748 141749 141750 141751 141752 141753 141754 141755 141756 141757 141758 141759 141760 141761 141762 141763 141764 141765 141766 141767 141768 141769 141770 141771 141772 141773 141774 141775 141776 141777 141778 141779 141780 141781 141782 141783 141784 141785 141786 141787 141788 141789 141790 141791 141792 141793 141794 141795 141796 141797 141798 141799 141800 141801 141802 141803 141804 141805 141806 141807 141808 141809 141810 141811 141812 141813 141814 141815 141816 141817 141818 141819 141820 141821 141822 141823 141824 141825 141826 141827 141828 141829 141830 141831 141832 141833 141834 141835 141836 141837 141838 141839 141840 141841 141842 141843 141844 141845 141846 141847 141848 141849 141850 141851 141852 141853 141854 141855 141856 141857 141858 141859 141860 141861 141862 141863 141864 141865 141866 141867 141868 141869 141870 141871 141872 141873 141874 141875 141876 141877 141878 141879 141880 141881 141882 141883 141884 141885 141886 141887 141888 141889 141890 141891 141892 141893 141894 141895 141896 141897 141898 141899 141900 141901 141902 141903 141904 141905 141906 141907 141908 141909 141910 141911 141912 141913 141914 141915 141916 141917 141918 141919 141920 141921 141922 141923 141924 141925 141926 141927 141928 141929 141930 141931 141932 141933 141934 141935 141936 141937 141938 141939 141940 141941 141942 141943 141944 141945 141946 141947 141948 141949 141950 141951 141952 141953 141954 141955 141956 141957 141958 141959 141960 | |
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemCallProcessingPolicyProfileVoiceXMLProfileGetRequest22V2
client = Client()
command = SystemCallProcessingPolicyProfileVoiceXMLProfileGetRequest22V2(
call_processing_policy_profile_name=...,
)
response = client.command(command)
print(response)