SystemOfficeZoneGetListRequest
Bases: OCIRequest
Get the list of all Office Zones. The response is either a SystemOfficeZoneGetListResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemOfficeZoneGetListRequest. The response contains a table of all Office Zones in the system. The column headings are "Name" and "Description"
Attributes:
office_zone_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemOfficeZoneGetListRequest
client = Client()
command = SystemOfficeZoneGetListRequest()
response = client.command(command)
print(response)