ServiceProviderDialableCallerIDCriteriaAddRequest
Bases: OCIRequest
Add a new Dialable Caller ID Criteria. Criteria are added at the bottom of the list with the lowest priority. The response is either a SuccessResponse or an ErrorResponse.
Attributes:
service_provider_id (str):
name (str):
description (Optional[str]):
prefix_digits (Optional[str]):
match_call_type (Optional[List[str]]):
match_alternate_call_indicator (Optional[List[str]]):
match_local_category (bool):
match_national_category (bool):
match_interlata_category (bool):
match_intralata_category (bool):
match_international_category (bool):
match_private_category (bool):
match_emergency_category (bool):
match_other_category (bool):
Source code in src/mercury_ocip_fast/commands/commands.py
66294 66295 66296 66297 66298 66299 66300 66301 66302 66303 66304 66305 66306 66307 66308 66309 66310 66311 66312 66313 66314 66315 66316 66317 66318 66319 66320 66321 66322 66323 66324 66325 66326 66327 66328 66329 66330 66331 66332 66333 66334 66335 66336 66337 66338 66339 66340 66341 66342 66343 66344 66345 66346 66347 66348 66349 66350 66351 66352 66353 66354 66355 66356 66357 66358 66359 66360 66361 66362 66363 66364 | |
Responses
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import ServiceProviderDialableCallerIDCriteriaAddRequest
client = Client()
command = ServiceProviderDialableCallerIDCriteriaAddRequest(
service_provider_id=...,
name=...,
description=...,
prefix_digits=...,
match_call_type=...,
match_alternate_call_indicator=...,
match_local_category=...,
match_national_category=...,
match_interlata_category=...,
match_intralata_category=...,
match_international_category=...,
match_private_category=...,
match_emergency_category=...,
match_other_category=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip_fast.client import Client
client = Client()
response = client.raw_command("ServiceProviderDialableCallerIDCriteriaAddRequest",
service_provider_id=...,
name=...,
description=...,
prefix_digits=...,
match_call_type=...,
match_alternate_call_indicator=...,
match_local_category=...,
match_national_category=...,
match_interlata_category=...,
match_intralata_category=...,
match_international_category=...,
match_private_category=...,
match_emergency_category=...,
match_other_category=...,
)
print(response)