SystemInterceptUserGetRequest
Bases: OCIRequest
Get the system-level intercept user service settings. The response is either a SystemInterceptUserGetResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemInterceptUserGetRequest.
Attributes:
emergency_and_repair_intercept (bool):
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 SystemInterceptUserGetRequest
client = Client()
command = SystemInterceptUserGetRequest()
response = client.command(command)
print(response)