UserVoiceMessagingUserGetVoicePortalRequest20
Bases: OCIRequest
Get the user's voice messaging voice portal settings. The response is either a UserVoiceMessagingUserGetVoicePortalResponse20 or an ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to UserVoiceMessagingUserGetVoicePortalRequest20.
Attributes:
use_personalized_name (bool):
voice_portal_auto_login (bool):
personalized_name_audio_file (Optional[AnnouncementFileLevelKey]):
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 UserVoiceMessagingUserGetVoicePortalRequest20
client = Client()
command = UserVoiceMessagingUserGetVoicePortalRequest20(
user_id=...,
)
response = client.command(command)
print(response)