SystemCallProcessingPolicyProfileFindMeFollowMeProfileGetRequest22V2
Bases: OCIRequest
Request to get the configuration for a call processing policy profile Find-me/Follow-me subscriber type profile. The response is either a SystemCallProcessingPolicyProfileFindMeFollowMeProfileGetResponse22V2 or an ErrorResponse.
Attributes:
call_processing_policy_profile_name (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemCallProcessingPolicyProfileFindMeFollowMeProfileGetRequest22V2. 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/commands/commands.py
139478 139479 139480 139481 139482 139483 139484 139485 139486 139487 139488 139489 139490 139491 139492 139493 139494 139495 139496 139497 139498 139499 139500 139501 139502 139503 139504 139505 139506 139507 139508 139509 139510 139511 139512 139513 139514 139515 139516 139517 139518 139519 139520 139521 139522 139523 139524 139525 139526 139527 139528 139529 139530 139531 139532 139533 139534 139535 139536 139537 139538 139539 139540 139541 139542 139543 139544 139545 139546 139547 139548 139549 139550 139551 139552 139553 139554 139555 139556 139557 139558 139559 139560 139561 139562 139563 139564 139565 139566 139567 139568 139569 139570 139571 139572 139573 139574 139575 139576 139577 139578 139579 139580 139581 139582 139583 139584 139585 139586 139587 139588 139589 139590 139591 139592 139593 139594 139595 139596 139597 139598 139599 139600 139601 139602 139603 139604 139605 139606 139607 139608 139609 139610 139611 139612 139613 139614 139615 139616 139617 139618 139619 139620 139621 139622 139623 139624 139625 139626 139627 139628 139629 139630 139631 139632 139633 139634 139635 139636 139637 139638 139639 139640 139641 139642 139643 139644 139645 139646 139647 139648 139649 139650 139651 139652 139653 139654 139655 139656 139657 139658 139659 139660 139661 139662 139663 139664 139665 139666 139667 139668 139669 139670 139671 139672 139673 139674 139675 139676 139677 139678 139679 139680 139681 139682 139683 139684 139685 139686 139687 139688 139689 139690 139691 139692 139693 139694 139695 139696 139697 139698 139699 139700 139701 139702 139703 139704 139705 | |
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemCallProcessingPolicyProfileFindMeFollowMeProfileGetRequest22V2
client = Client()
command = SystemCallProcessingPolicyProfileFindMeFollowMeProfileGetRequest22V2(
call_processing_policy_profile_name=...,
)
response = client.command(command)
print(response)