SystemCommunicationBarringServiceProviderGetIncomingCriteriaUsageListRequest
Bases: OCIRequest
Get the list of Service Providers that use a specific Communication Barring Incoming Criteria. The response is either a SystemCommunicationBarringServiceProviderGetIncomingCriteriaUsageListResponse or an ErrorResponse.
Attributes:
name (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemCommunicationBarringServiceProviderGetIncomingCriteriaUsageListRequest. The response contains a table of all Service Providers that use the specific Communication Barring Incoming criteria. The column headings are "Service Provider Id", "Service Provider Name" and "Is Enterprise"
Attributes:
service_provider_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemCommunicationBarringServiceProviderGetIncomingCriteriaUsageListRequest
client = Client()
command = SystemCommunicationBarringServiceProviderGetIncomingCriteriaUsageListRequest(
name=...,
)
response = client.command(command)
print(response)