ServiceProviderDialPlanPolicyModifyRequest
Bases: OCIRequest
Modify the Service Provider level data associated with Dial Plan Policy. The response is either a SuccessResponse or an ErrorResponse. The following elements are only used in AS data mode and ignored in XS data mode: overrideResolvedDeviceDigitMap deviceDigitMap
Attributes:
service_provider_id (str):
requires_access_code_for_public_calls (Optional[bool]):
allow_e164_public_calls (Optional[bool]):
prefer_e164_number_format_for_callback_services (Optional[bool]):
public_digit_map (Optional[Nillable[str]]):
private_digit_map (Optional[Nillable[str]]):
override_resolved_device_digit_map (Optional[bool]):
device_digit_map (Optional[Nillable[str]]):
Source code in src/mercury_ocip_fast/commands/commands.py
66228 66229 66230 66231 66232 66233 66234 66235 66236 66237 66238 66239 66240 66241 66242 66243 66244 66245 66246 66247 66248 66249 66250 66251 66252 66253 66254 66255 66256 66257 66258 66259 66260 66261 66262 66263 66264 66265 66266 66267 66268 66269 66270 66271 66272 66273 66274 66275 66276 66277 66278 66279 66280 66281 66282 66283 66284 66285 66286 66287 66288 66289 66290 66291 | |
Responses
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import ServiceProviderDialPlanPolicyModifyRequest
client = Client()
command = ServiceProviderDialPlanPolicyModifyRequest(
service_provider_id=...,
requires_access_code_for_public_calls=...,
allow_e164_public_calls=...,
prefer_e164_number_format_for_callback_services=...,
public_digit_map=...,
private_digit_map=...,
override_resolved_device_digit_map=...,
device_digit_map=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip_fast.client import Client
client = Client()
response = client.raw_command("ServiceProviderDialPlanPolicyModifyRequest",
service_provider_id=...,
requires_access_code_for_public_calls=...,
allow_e164_public_calls=...,
prefer_e164_number_format_for_callback_services=...,
public_digit_map=...,
private_digit_map=...,
override_resolved_device_digit_map=...,
device_digit_map=...,
)
print(response)