EnterpriseVoiceVPNGetPolicyRequest
Bases: OCIRequest
Request the enterprise level data associated with Voice VPN location code. The response is either a EnterpriseVoiceVPNGetPolicyResponse or an ErrorResponse.
Attributes:
service_provider_id (str):
location_dialing_code (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to EnterpriseVoiceVPNGetPolicyRequest.
Attributes:
min_extension_length (int):
max_extension_length (int):
description (Optional[str]):
route_group_id (Optional[str]):
policy_selection (str):
digit_manipulation (Optional[List[EnterpriseVoiceVPNDigitManipulation]]):
treatment_id (Optional[str]):
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 EnterpriseVoiceVPNGetPolicyRequest
client = Client()
command = EnterpriseVoiceVPNGetPolicyRequest(
service_provider_id=...,
location_dialing_code=...,
)
response = client.command(command)
print(response)