SystemCommunicationBarringDigitPatternCriteriaGetRequest
Bases: OCIRequest
Get an existing Communication Barring Digit Pattern Criteria. The response is either a SystemCommunicationBarringDigitPatternCriteriaGetResponse or an ErrorResponse.
Attributes:
name (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
The response to a SystemCommunicationBarringDigitPatternCriteriaGetRequest.
Attributes:
description (Optional[Nillable[str]]):
digit_pattern (Optional[List[str]]):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemCommunicationBarringDigitPatternCriteriaGetRequest
client = Client()
command = SystemCommunicationBarringDigitPatternCriteriaGetRequest(
name=...,
)
response = client.command(command)
print(response)