GroupTrunkGroupGetRequest23
Bases: OCIRequest
Get the maximum and bursting maximum permissible active trunk group calls for the group. The response is either a GroupTrunkGroupGetResponse23 or an ErrorResponse.
Attributes:
service_provider_id (str):
group_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupTrunkGroupGetRequest23. The response contains the maximum and bursting maximum permissible active trunk group calls for the group.
Attributes:
max_active_calls (int):
max_available_active_calls (UnboundedNonNegativeInt):
bursting_max_active_calls (UnboundedNonNegativeInt):
bursting_max_available_active_calls (UnboundedNonNegativeInt):
max_available_number_of_bursting_btl_us (UnboundedNonNegativeInt):
number_of_bursting_btl_us (Optional[int]):
Source code in src/mercury_ocip_fast/commands/commands.py
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import GroupTrunkGroupGetRequest23
client = Client()
command = GroupTrunkGroupGetRequest23(
service_provider_id=...,
group_id=...,
)
response = client.command(command)
print(response)