SystemAutomaticCollectCallGetRequest22
Bases: OCIRequest
Get system Automatic Collect Call service settings. The response is either SystemAutomaticCollectCallGetResponse22 or ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemAutomaticCollectCallGetRequest22. Returns system Automatic Collect Call service settings.
Attributes:
enable_automatic_collect_call (bool):
enable_connect_tone (bool):
include_country_code_in_cic (bool):
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 SystemAutomaticCollectCallGetRequest22
client = Client()
command = SystemAutomaticCollectCallGetRequest22()
response = client.command(command)
print(response)