SystemDialableCallerIDCriteriaAddRequest
Bases: OCIRequest
Add a new Dialable Caller ID Criteria. Criteria are added at the bottom of the list with the lowest priority. The response is either a SuccessResponse or an ErrorResponse.
Attributes:
name (str):
description (Optional[str]):
prefix_digits (Optional[str]):
match_call_type (Optional[List[str]]):
match_alternate_call_indicator (Optional[List[str]]):
match_local_category (bool):
match_national_category (bool):
match_interlata_category (bool):
match_intralata_category (bool):
match_international_category (bool):
match_private_category (bool):
match_emergency_category (bool):
match_other_category (bool):
Source code in src/mercury_ocip_fast/commands/commands.py
85997 85998 85999 86000 86001 86002 86003 86004 86005 86006 86007 86008 86009 86010 86011 86012 86013 86014 86015 86016 86017 86018 86019 86020 86021 86022 86023 86024 86025 86026 86027 86028 86029 86030 86031 86032 86033 86034 86035 86036 86037 86038 86039 86040 86041 86042 86043 86044 86045 86046 86047 86048 86049 86050 86051 86052 86053 86054 86055 86056 86057 86058 86059 86060 86061 86062 86063 | |
Responses
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemDialableCallerIDCriteriaAddRequest
client = Client()
command = SystemDialableCallerIDCriteriaAddRequest(
name=...,
description=...,
prefix_digits=...,
match_call_type=...,
match_alternate_call_indicator=...,
match_local_category=...,
match_national_category=...,
match_interlata_category=...,
match_intralata_category=...,
match_international_category=...,
match_private_category=...,
match_emergency_category=...,
match_other_category=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip_fast.client import Client
client = Client()
response = client.raw_command("SystemDialableCallerIDCriteriaAddRequest",
name=...,
description=...,
prefix_digits=...,
match_call_type=...,
match_alternate_call_indicator=...,
match_local_category=...,
match_national_category=...,
match_interlata_category=...,
match_intralata_category=...,
match_international_category=...,
match_private_category=...,
match_emergency_category=...,
match_other_category=...,
)
print(response)