SystemCallProcessingPolicyProfileHuntGroupProfileGetRequest22V2
Bases: OCIRequest
Request to get the configuration for a call processing policy profile Hunt Group subscriber type profile. The response is either a SystemCallProcessingPolicyProfileHuntGroupProfileGetResponse22V2 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 SystemCallProcessingPolicyProfileHuntGroupProfileGetRequest22V2. 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):
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_unanswered_calls (bool):
max_call_time_for_unanswered_calls_minutes (int):
use_max_concurrent_redirected_calls (bool):
max_concurrent_redirected_calls (int):
use_max_concurrent_find_me_follow_me_invocations (bool):
max_concurrent_find_me_follow_me_invocations (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_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_fast/commands/commands.py
140136 140137 140138 140139 140140 140141 140142 140143 140144 140145 140146 140147 140148 140149 140150 140151 140152 140153 140154 140155 140156 140157 140158 140159 140160 140161 140162 140163 140164 140165 140166 140167 140168 140169 140170 140171 140172 140173 140174 140175 140176 140177 140178 140179 140180 140181 140182 140183 140184 140185 140186 140187 140188 140189 140190 140191 140192 140193 140194 140195 140196 140197 140198 140199 140200 140201 140202 140203 140204 140205 140206 140207 140208 140209 140210 140211 140212 140213 140214 140215 140216 140217 140218 140219 140220 140221 140222 140223 140224 140225 140226 140227 140228 140229 140230 140231 140232 140233 140234 140235 140236 140237 140238 140239 140240 140241 140242 140243 140244 140245 140246 140247 140248 140249 140250 140251 140252 140253 140254 140255 140256 140257 140258 140259 140260 140261 140262 140263 140264 140265 140266 140267 140268 140269 140270 140271 140272 140273 140274 140275 140276 140277 140278 140279 140280 140281 140282 140283 140284 140285 140286 140287 140288 140289 140290 140291 140292 140293 140294 140295 140296 140297 140298 140299 140300 140301 140302 140303 140304 140305 140306 140307 140308 140309 140310 140311 140312 140313 140314 140315 140316 140317 140318 140319 140320 140321 140322 140323 140324 140325 140326 140327 140328 140329 140330 140331 140332 140333 140334 140335 140336 140337 140338 140339 140340 140341 140342 140343 140344 140345 140346 140347 140348 140349 140350 140351 140352 140353 140354 140355 140356 140357 140358 140359 140360 140361 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemCallProcessingPolicyProfileHuntGroupProfileGetRequest22V2
client = Client()
command = SystemCallProcessingPolicyProfileHuntGroupProfileGetRequest22V2(
call_processing_policy_profile_name=...,
)
response = client.command(command)
print(response)