GroupRoutePointGetDNISRequest
Bases: OCIRequest
Get a route point's DNIS. The response is either a GroupRoutePointGetDNISResponse or an ErrorResponse.
Attributes:
dnis_key (DNISKey):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupRoutePointGetDNISRequest.
Attributes:
dnis_phone_number (Optional[str]):
extension (Optional[str]):
use_custom_clid_settings (bool):
calling_line_id_phone_number (Optional[str]):
calling_line_id_last_name (Optional[str]):
calling_line_id_first_name (Optional[str]):
use_custom_dnis_announcement_settings (bool):
allow_outgoing_acd_call (bool):
Source code in src/mercury_ocip/commands/commands.py
128525 128526 128527 128528 128529 128530 128531 128532 128533 128534 128535 128536 128537 128538 128539 128540 128541 128542 128543 128544 128545 128546 128547 128548 128549 128550 128551 128552 128553 128554 128555 128556 128557 128558 128559 128560 128561 128562 128563 128564 128565 128566 128567 128568 128569 128570 128571 128572 128573 | |
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupRoutePointGetDNISRequest
client = Client()
command = GroupRoutePointGetDNISRequest(
dnis_key=...,
)
response = client.command(command)
print(response)