SystemMusicOnHoldGetRequest
Bases: OCIRequest
Request the system level data associated with Music On Hold. The response is either a SystemMusicOnHoldGetResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemMusicOnHoldGetRequest.
Attributes:
delay_milliseconds (int):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemMusicOnHoldGetRequest
client = Client()
command = SystemMusicOnHoldGetRequest()
response = client.command(command)
print(response)