SystemLanguageGetListRequest
Bases: OCIRequest
Request the defined languages in the system. The response is either a SystemLanguageGetListResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemLanguageGetListRequest. The language table column headings are: "Language", "Locale" and "Encoding".
Attributes:
default_language (str):
language_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 SystemLanguageGetListRequest
client = Client()
command = SystemLanguageGetListRequest()
response = client.command(command)
print(response)