SystemCallProcessingPolicyProfileVoicePortalProfileGetRequest22V2
Bases: OCIRequest
Request to get the configuration for a call processing policy profile Voice Portal subscriber type profile. The response is either a SystemCallProcessingPolicyProfileVoicePortalProfileGetResponse22V2 or an ErrorResponse.
Attributes:
call_processing_policy_profile_name (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemCallProcessingPolicyProfileVoicePortalProfileGetRequest22V2. 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):
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):
max_redirection_depth (int):
use_translation_routing_policy (bool):
network_usage_selection (str):
enable_enterprise_extension_dialing (bool):
allow_enterprise_group_call_typing_for_private_dialing_plan (bool):
allow_enterprise_group_call_typing_for_public_dialing_plan (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 (Optional[bool]):
max_calls_per_second (Optional[int]):
Source code in src/mercury_ocip/commands/commands.py
141573 141574 141575 141576 141577 141578 141579 141580 141581 141582 141583 141584 141585 141586 141587 141588 141589 141590 141591 141592 141593 141594 141595 141596 141597 141598 141599 141600 141601 141602 141603 141604 141605 141606 141607 141608 141609 141610 141611 141612 141613 141614 141615 141616 141617 141618 141619 141620 141621 141622 141623 141624 141625 141626 141627 141628 141629 141630 141631 141632 141633 141634 141635 141636 141637 141638 141639 141640 141641 141642 141643 141644 141645 141646 141647 141648 141649 141650 141651 141652 141653 141654 141655 141656 141657 141658 141659 141660 141661 141662 141663 141664 141665 141666 141667 141668 141669 141670 141671 141672 141673 141674 141675 141676 141677 141678 141679 141680 141681 141682 141683 141684 141685 141686 141687 141688 141689 141690 141691 141692 141693 141694 141695 141696 141697 141698 141699 141700 141701 141702 141703 141704 141705 141706 141707 141708 141709 141710 141711 141712 141713 141714 141715 141716 141717 141718 141719 141720 141721 141722 141723 141724 141725 141726 141727 141728 141729 141730 141731 141732 141733 141734 | |
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemCallProcessingPolicyProfileVoicePortalProfileGetRequest22V2
client = Client()
command = SystemCallProcessingPolicyProfileVoicePortalProfileGetRequest22V2(
call_processing_policy_profile_name=...,
)
response = client.command(command)
print(response)