SystemAccountingGetChargingFunctionElementServerListRequest
Bases: OCIRequest
Request to get a list of ChargingFunctionElementServers defined in the system. The response is either a SystemAccountingGetChargingFunctionElementServerListResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemAccountingGetChargingFunctionElementServerListRequest. The accounting charging function element Server table column headings are: "Address", "Extended Net Address", "Type", "Description".
Attributes:
charging_function_element_server_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 SystemAccountingGetChargingFunctionElementServerListRequest
client = Client()
command = SystemAccountingGetChargingFunctionElementServerListRequest()
response = client.command(command)
print(response)