ServiceProviderVoiceMessagingGroupGetRequest
Bases: OCIRequest
Requests the service provider's or enterprise's voice messaging settings. The response is either ServiceProviderVoiceMessagingGroupGetResponse or ErrorResponse.
Attributes:
service_provider_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to ServiceProviderVoiceMessagingGroupGetRequest. Contains the service provider's or enterprise's voice messaging settings.
Attributes:
delivery_from_address (Optional[str]):
notification_from_address (Optional[str]):
voice_portal_lockout_from_address (Optional[str]):
use_system_default_delivery_from_address (bool):
use_system_default_notification_from_address (bool):
use_system_default_voice_portal_lockout_from_address (bool):
Source code in src/mercury_ocip/commands/commands.py
136038 136039 136040 136041 136042 136043 136044 136045 136046 136047 136048 136049 136050 136051 136052 136053 136054 136055 136056 136057 136058 136059 136060 136061 136062 136063 136064 136065 136066 136067 136068 136069 136070 136071 136072 136073 136074 136075 136076 136077 136078 136079 136080 136081 | |
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import ServiceProviderVoiceMessagingGroupGetRequest
client = Client()
command = ServiceProviderVoiceMessagingGroupGetRequest(
service_provider_id=...,
)
response = client.command(command)
print(response)