ServiceProviderDialableCallerIDGetRequest
Bases: OCIRequest
Get the service provider?s Dialable Caller ID settings and criteria list. The response is either a ServiceProviderDialableCallerIDGetResponse or an ErrorResponse.
Attributes:
service_provider_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the ServiceProviderDialableCallerIDGetRequest. The criteria table?s column headings are ?Active?, "Name", "Description", ?Prefix Digits?, and ?Priority?.
Attributes:
use_service_provider_criteria (bool):
ns_screening_failure_policy (str):
criteria_table (OCITable):
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 ServiceProviderDialableCallerIDGetRequest
client = Client()
command = ServiceProviderDialableCallerIDGetRequest(
service_provider_id=...,
)
response = client.command(command)
print(response)