SystemAccountingReorderChargingFunctionElementServerRequest
Bases: OCIRequest
Reorder the charging function element servers. You can not add or delete addresses, only re-ordering the list is allowed. The ordered list of addresses can be obtained with the SystemAccountingGetChargingFunctionElementServerListRequest command. The response is either a SuccessResponse or an ErrorResponse.
Attributes:
ordered_address_list (List[str]):
Source code in src/mercury_ocip/commands/commands.py
Responses
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemAccountingReorderChargingFunctionElementServerRequest
client = Client()
command = SystemAccountingReorderChargingFunctionElementServerRequest(
ordered_address_list=...,
)
response = client.command(command)
print(response)