SystemCallCenterEventRecordingFileParametersGetRequest
Bases: OCIRequest
Request to get the list of Call Center Event Recording File system parameters. The response is either SystemCallCenterEventRecordingFileParametersGetResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemCallCenterEventRecordingFileParametersGetRequest. Contains a list of system Call Center Event Recording File parameters.
Attributes:
file_retention_time_days (int):
file_rotation_period_minutes (str):
file_rotation_offset_minutes (int):
remote_url (Optional[str]):
remote_user_id (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 SystemCallCenterEventRecordingFileParametersGetRequest
client = Client()
command = SystemCallCenterEventRecordingFileParametersGetRequest()
response = client.command(command)
print(response)