GroupEnterpriseTrunkGetRequest22
Bases: OCIRequest
Request to get an enterprise trunk The response is either an GroupEnterpriseTrunkGetResponse22 or an ErrorResponse.
Attributes:
service_provider_id (str):
group_id (str):
enterprise_trunk_name (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to GroupEnterpriseTrunkGetRequest22.
Attributes:
maximum_reroute_attempts (int):
route_exhaustion_action (str):
route_exhaustion_forward_address (Optional[str]):
ordered_routing (Optional[object]):
priority_weighted_routing (Optional[object]):
enable_capacity_management (bool):
max_active_calls (Optional[int]):
capacity_exceeded_trap_initial_calls (Optional[int]):
capacity_exceeded_trap_offset_calls (Optional[int]):
maximum_active_incoming_calls_allowed (Optional[int]):
maximum_active_outgoing_calls_allowed (Optional[int]):
minimum_active_calls_reserved (Optional[int]):
Source code in src/mercury_ocip_fast/commands/commands.py
125722 125723 125724 125725 125726 125727 125728 125729 125730 125731 125732 125733 125734 125735 125736 125737 125738 125739 125740 125741 125742 125743 125744 125745 125746 125747 125748 125749 125750 125751 125752 125753 125754 125755 125756 125757 125758 125759 125760 125761 125762 125763 125764 125765 125766 125767 125768 125769 125770 125771 125772 125773 125774 125775 125776 125777 125778 125779 125780 125781 125782 125783 125784 125785 125786 125787 125788 125789 125790 125791 125792 125793 125794 125795 125796 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import GroupEnterpriseTrunkGetRequest22
client = Client()
command = GroupEnterpriseTrunkGetRequest22(
service_provider_id=...,
group_id=...,
enterprise_trunk_name=...,
)
response = client.command(command)
print(response)