SystemCommunicationBarringIncomingCriteriaGetRequest22
Bases: OCIRequest
Get an existing Communication Barring Incoming Criteria. The response is either a SystemCommunicationBarringIncomingCriteriaGetResponse22 or an ErrorResponse.
Attributes:
name (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemCommunicationBarringIncomingCriteriaGetRequest. The response contains the Communication Barring Incoming Criteria information.
Attributes:
description (Optional[str]):
time_schedule (Optional[str]):
holiday_schedule (Optional[str]):
match_number_portability_status (Optional[List[str]]):
call_tagged_as_spam (bool):
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 SystemCommunicationBarringIncomingCriteriaGetRequest22
client = Client()
command = SystemCommunicationBarringIncomingCriteriaGetRequest22(
name=...,
)
response = client.command(command)
print(response)