UserThirdPartyVoiceMailSupportGetRequest17
Bases: OCIRequest
Request the user level data associated with Third-Party Voice Mail Support. The response is either a UserThirdPartyVoiceMailSupportGetResponse17 or an ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to UserThirdPartyVoiceMailSupportGetRequest17.
Attributes:
is_active (bool):
busy_redirect_to_voice_mail (bool):
no_answer_redirect_to_voice_mail (bool):
server_selection (str):
user_server (Optional[str]):
mailbox_id_type (str):
mailbox_url (Optional[str]):
no_answer_number_of_rings (int):
always_redirect_to_voice_mail (bool):
out_of_primary_zone_redirect_to_voice_mail (bool):
Source code in src/mercury_ocip_fast/commands/commands.py
157833 157834 157835 157836 157837 157838 157839 157840 157841 157842 157843 157844 157845 157846 157847 157848 157849 157850 157851 157852 157853 157854 157855 157856 157857 157858 157859 157860 157861 157862 157863 157864 157865 157866 157867 157868 157869 157870 157871 157872 157873 157874 157875 157876 157877 157878 157879 157880 157881 157882 157883 157884 157885 157886 157887 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import UserThirdPartyVoiceMailSupportGetRequest17
client = Client()
command = UserThirdPartyVoiceMailSupportGetRequest17(
user_id=...,
)
response = client.command(command)
print(response)