SystemDTMFTransmissionGetRequest
Bases: OCIRequest
Get the system DTMF transmission configurations. The response is either SystemDTMFTransmissionGetResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemDTMFTransmissionGetRequest.
Attributes:
transmission_method (str):
signaling_content_type (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemDTMFTransmissionGetRequest
client = Client()
command = SystemDTMFTransmissionGetRequest()
response = client.command(command)
print(response)