SystemNumberActivationGetRequest21
Bases: OCIRequest
Request to get the number activation state and enterprise trunk number range activation status. The response is either SystemNumberActivationGetResponse21 or ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemNumberActivationGetRequest21. Contains the system number activation and enterprise trunk number range activation setting.
Attributes:
number_activation_mode (str):
enable_enterprise_trunk_number_range_activation (bool):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemNumberActivationGetRequest21
client = Client()
command = SystemNumberActivationGetRequest21()
response = client.command(command)
print(response)