SystemAdviceOfChargeGetRequest25
Bases: OCIRequest
Request to get the list of Advice of Charge system parameters. The response is either SystemAdviceOfChargeGetResponse25 or ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemAdviceOfChargeGetRequest25. Contains a list of system Advice of Charge parameters.
Attributes:
delay_between_notification_seconds (int):
incoming_aoc_handling (str):
use_ocs_enquiry (bool):
ocs_enquiry_type (str):
proxy_ao_c_body (bool):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemAdviceOfChargeGetRequest25
client = Client()
command = SystemAdviceOfChargeGetRequest25()
response = client.command(command)
print(response)