SystemNetworkProgressionGetRequest
Bases: OCIRequest
Request the system level data associated with network progression. The response is either a SystemNetworkProgressionGetResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemNetworkProgressionGetRequest.
Attributes:
is_active (bool):
wait_period_seconds (int):
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 SystemNetworkProgressionGetRequest
client = Client()
command = SystemNetworkProgressionGetRequest()
response = client.command(command)
print(response)