SystemTimeZoneGetListRequest20
Bases: OCIRequest
Requests the configured time zone of the server processing the request and the list of time zone names. The response is either SystemTimeZoneGetListResponse20 or ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemTimeZoneGetListRequest20. Contains the configured time zone of the server processing the request and contains a 2 column table with column headings 'Key' and 'Display Name' and a row for each time zone.
Attributes:
server_time_zone (str):
time_zone_table (OCITable):
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 SystemTimeZoneGetListRequest20
client = Client()
command = SystemTimeZoneGetListRequest20()
response = client.command(command)
print(response)