GroupCallCenterBouncedCallGetRequest17
Bases: OCIRequest
Get a call center's bounced call settings. The response is either a GroupCallCenterBouncedCallGetResponse17 or an ErrorResponse.
Attributes:
service_user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupCallCenterBouncedCallGetRequest17.
The following elements are only used in AS data mode and not returned in XS data mode:
enableTransfer
transferPhoneNumber
bounceCallWhenAgentUnavailable
alertCallCenterCallOnHold
alertCallCenterCallOnHoldSeconds
bounceCallCenterCallOnHold
bounceCallCenterCallOnHoldSeconds
Attributes:
is_active (bool):
number_of_rings_before_bouncing_call (int):
enable_transfer (Optional[bool]):
transfer_phone_number (Optional[str]):
bounce_call_when_agent_unavailable (Optional[bool]):
alert_call_center_call_on_hold (Optional[bool]):
alert_call_center_call_on_hold_seconds (Optional[int]):
bounce_call_center_call_on_hold (Optional[bool]):
bounce_call_center_call_on_hold_seconds (Optional[int]):
Source code in src/mercury_ocip_fast/commands/commands.py
121520 121521 121522 121523 121524 121525 121526 121527 121528 121529 121530 121531 121532 121533 121534 121535 121536 121537 121538 121539 121540 121541 121542 121543 121544 121545 121546 121547 121548 121549 121550 121551 121552 121553 121554 121555 121556 121557 121558 121559 121560 121561 121562 121563 121564 121565 121566 121567 121568 121569 121570 121571 121572 121573 121574 121575 121576 121577 121578 121579 121580 121581 121582 121583 121584 121585 121586 121587 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import GroupCallCenterBouncedCallGetRequest17
client = Client()
command = GroupCallCenterBouncedCallGetRequest17(
service_user_id=...,
)
response = client.command(command)
print(response)