ResellerVoiceMessagingGroupGetRequest
Bases: OCIRequest
Request the reseller level data associated with Voice Messaging. The response is either a ResellerVoiceMessagingGroupGetResponse or an ErrorResponse.
Attributes:
reseller_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to ResellerVoiceMessagingGroupGetRequest.
Attributes:
delivery_from_address (Optional[str]):
notification_from_address (Optional[str]):
voice_portal_lockout_from_address (Optional[str]):
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 ResellerVoiceMessagingGroupGetRequest
client = Client()
command = ResellerVoiceMessagingGroupGetRequest(
reseller_id=...,
)
response = client.command(command)
print(response)