SystemPhysicalLocationGetRequest
Bases: OCIRequest
Request to get the list of Physical Location system parameters. The response is either SystemPhysicalLocationGetResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemPhysicalLocationGetRequest. Contains a list of system Physical Location parameters.
Attributes:
always_allow_emergency_calls (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 SystemPhysicalLocationGetRequest
client = Client()
command = SystemPhysicalLocationGetRequest()
response = client.command(command)
print(response)