SystemPersonalAssistantGetRequest
Bases: OCIRequest
Get system Personal Assistant Parameters. The response is either SystemPersonalAssistantGetResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemPersonalAssistantGetRequest. Returns system Personal Assistant Parameters.
Attributes:
transfer_to_attendant_key (str):
transfer_to_voice_messaging_key (str):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemPersonalAssistantGetRequest
client = Client()
command = SystemPersonalAssistantGetRequest()
response = client.command(command)
print(response)