SystemCallProcessingPolicyProfileGroupPagingProfileGetRequest22
Bases: OCIRequest
Request to get the configuration for a call processing policy profile Group Paging subscriber type profile. The response is either a SystemCallProcessingPolicyProfileGroupPagingProfileGetResponse22 or an ErrorResponse.
Attributes:
call_processing_policy_profile_name (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemCallProcessingPolicyProfileGroupPagingProfileGetRequest22.
Attributes:
use_clid_policy (bool):
clid_policy (str):
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_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):
use_max_find_me_follow_me_depth (bool):
max_find_me_follow_me_depth (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_user_phone_number_for_group_calls_when_internal_clid_unavailable (bool):
use_user_phone_number_for_enterprise_calls_when_internal_clid_unavailable (bool):
Source code in src/mercury_ocip_fast/commands/commands.py
139963 139964 139965 139966 139967 139968 139969 139970 139971 139972 139973 139974 139975 139976 139977 139978 139979 139980 139981 139982 139983 139984 139985 139986 139987 139988 139989 139990 139991 139992 139993 139994 139995 139996 139997 139998 139999 140000 140001 140002 140003 140004 140005 140006 140007 140008 140009 140010 140011 140012 140013 140014 140015 140016 140017 140018 140019 140020 140021 140022 140023 140024 140025 140026 140027 140028 140029 140030 140031 140032 140033 140034 140035 140036 140037 140038 140039 140040 140041 140042 140043 140044 140045 140046 140047 140048 140049 140050 140051 140052 140053 140054 140055 140056 140057 140058 140059 140060 140061 140062 140063 140064 140065 140066 140067 140068 140069 140070 140071 140072 140073 140074 140075 140076 140077 140078 140079 140080 140081 140082 140083 140084 140085 140086 140087 140088 140089 140090 140091 140092 140093 140094 140095 140096 140097 140098 140099 140100 140101 140102 140103 140104 140105 140106 140107 140108 140109 140110 140111 140112 140113 140114 140115 140116 140117 140118 140119 140120 140121 140122 140123 140124 140125 140126 140127 140128 140129 140130 140131 140132 140133 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemCallProcessingPolicyProfileGroupPagingProfileGetRequest22
client = Client()
command = SystemCallProcessingPolicyProfileGroupPagingProfileGetRequest22(
call_processing_policy_profile_name=...,
)
response = client.command(command)
print(response)