SystemSystemServiceCallProcessingPoliciesGetRequest
Bases: OCIRequest
Request the data associated with Call Processing Policy for system service instances. The response is either SystemSystemServiceCallProcessingPoliciesGetResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemSystemServiceCallProcessingPoliciesGetRequest.
Attributes:
use_max_simultaneous_calls (bool):
max_simultaneous_calls (int):
use_max_simultaneous_video_calls (bool):
max_simultaneous_video_calls (int):
use_max_concurrent_redirected_calls (bool):
max_concurrent_redirected_calls (int):
use_max_call_time_for_answered_calls (bool):
max_call_time_for_answered_calls_minutes (int):
Source code in src/mercury_ocip/commands/commands.py
149384 149385 149386 149387 149388 149389 149390 149391 149392 149393 149394 149395 149396 149397 149398 149399 149400 149401 149402 149403 149404 149405 149406 149407 149408 149409 149410 149411 149412 149413 149414 149415 149416 149417 149418 149419 149420 149421 149422 149423 149424 149425 149426 149427 149428 149429 149430 149431 149432 149433 149434 149435 149436 | |
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemSystemServiceCallProcessingPoliciesGetRequest
client = Client()
command = SystemSystemServiceCallProcessingPoliciesGetRequest()
response = client.command(command)
print(response)