SystemClassmarkGetListRequest
Bases: OCIRequest
Get the list of all Class Mark in system. The response is either a SystemClassmarkGetListResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemClassmarkGetListRequest. Contains a table of with the column headings: "Class Mark", "Value" and "Web Display Key".
Attributes:
classmark_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 SystemClassmarkGetListRequest
client = Client()
command = SystemClassmarkGetListRequest()
response = client.command(command)
print(response)