SystemCommunicationBarringUserControlGetRequest
Bases: OCIRequest
Gets the Communication Barring system level settings. The response is either SystemCommunicationBarringUserControlGetResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemCommunicationBarringUserControlGetRequest. Contains the settings to whole system for Communication Barring User-Control
Attributes:
enable_lockout (bool):
max_number_of_failed_attempts (int):
lockout_minutes (int):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemCommunicationBarringUserControlGetRequest
client = Client()
command = SystemCommunicationBarringUserControlGetRequest()
response = client.command(command)
print(response)