ServiceProviderDialPlanPolicyGetRequest22
Bases: OCIRequest
Request the Service Provider level data associated with Dial Plan Policy. The response is either a ServiceProviderDialPlanPolicyGetResponse22 or an ErrorResponse.
Attributes:
service_provider_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to ServiceProviderDialPlanPolicyGetRequest22 The following elements are only used in AS data mode: overrideResolvedDeviceDigitMap The following elements are only used in AS data mode and not returned in XS data mode: deviceDigitMap
Attributes:
requires_access_code_for_public_calls (bool):
allow_e164_public_calls (bool):
prefer_e164_number_format_for_callback_services (bool):
public_digit_map (Optional[str]):
private_digit_map (Optional[str]):
override_resolved_device_digit_map (bool):
device_digit_map (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
133687 133688 133689 133690 133691 133692 133693 133694 133695 133696 133697 133698 133699 133700 133701 133702 133703 133704 133705 133706 133707 133708 133709 133710 133711 133712 133713 133714 133715 133716 133717 133718 133719 133720 133721 133722 133723 133724 133725 133726 133727 133728 133729 133730 133731 133732 133733 133734 133735 133736 133737 | |
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import ServiceProviderDialPlanPolicyGetRequest22
client = Client()
command = ServiceProviderDialPlanPolicyGetRequest22(
service_provider_id=...,
)
response = client.command(command)
print(response)