SystemCommunicationBarringServiceProviderGetCriteriaUsageListRequest
Bases: OCIRequest
Get the list of Service Providers that use a specific Communication Barring Criteria. The response is either a SystemCommunicationBarringServiceProviderGetCriteriaUsageListResponse or an ErrorResponse.
Attributes:
name (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemCommunicationBarringServiceProviderGetCriteriaUsageListRequest. The response contains a table of all Service Providers that use the specific Communication Barring 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 SystemCommunicationBarringServiceProviderGetCriteriaUsageListRequest
client = Client()
command = SystemCommunicationBarringServiceProviderGetCriteriaUsageListRequest(
name=...,
)
response = client.command(command)
print(response)