SystemCommunicationBarringProfileGetCriteriaUsageListRequest
Bases: OCIRequest
Get the list of Communication Barring Proifles that uses a specific Communication Barring criteria. The response is either a SystemCommunicationBarringProfileGetCriteriaUsageListResponse or an ErrorResponse.
Attributes:
name (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemCommunicationBarringProfileGetCriteriaUsageListRequest. The response contains a table of system Communication Barring Profiles that use the specific Communication Barring Criteria. The column headings are "Name" and "Description"
Attributes:
profile_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 SystemCommunicationBarringProfileGetCriteriaUsageListRequest
client = Client()
command = SystemCommunicationBarringProfileGetCriteriaUsageListRequest(
name=...,
)
response = client.command(command)
print(response)