SystemAccountingInhibitedAttributeValuePairCodeGetListRequest
Bases: OCIRequest
Get a list of Attribute Value Pair (AVP) combinations that are disabled. The response is either a SystemAccountingInhibitedAttributeValuePairCodeGetListResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemAccountingInhibitedAttributeValuePairCodeGetListRequest. Contains a 2 column table with column headings "Attribute Value Pair Code" and "Vendor Id".
Attributes:
inhibited_attribute_value_pair_code_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 SystemAccountingInhibitedAttributeValuePairCodeGetListRequest
client = Client()
command = SystemAccountingInhibitedAttributeValuePairCodeGetListRequest()
response = client.command(command)
print(response)