SystemGETSAvpCodeMapGetListRequest
Bases: OCIRequest
Get a list of GETS AVP Code Maps at the system level. The response is either SystemGETSAvpCodeMapGetListResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemGETSAvpCodeMapGetListRequest. The table columns are: "AVP Code" and "Vendor ID".
Attributes:
avp_code_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemGETSAvpCodeMapGetListRequest
client = Client()
command = SystemGETSAvpCodeMapGetListRequest()
response = client.command(command)
print(response)