EnterpriseVoiceVPNGetDefaultRequest
Bases: OCIRequest
Request the Voice VPN default settings for the enterprise. The response is EnterpriseVoiceVPNGetDefaultResponse or ErrorResponse.
Attributes:
service_provider_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to EnterpriseVoiceVPNGetDefaultResponse.
Attributes:
policy_selection (List[str]):
digit_manipulation_operation (List[str]):
route_group_id (Optional[List[str]]):
treatment (Optional[List[EnterpriseVoiceVPNTreatmentEntry]]):
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 EnterpriseVoiceVPNGetDefaultRequest
client = Client()
command = EnterpriseVoiceVPNGetDefaultRequest(
service_provider_id=...,
)
response = client.command(command)
print(response)