SystemCommunicationBarringIncomingCriteriaModifyRequest
Bases: OCIRequest
Modify an existing Communication Barring Incoming Criteria. The response is either a SuccessResponse or an ErrorResponse.
Attributes:
name (str):
new_name (Optional[str]):
description (Optional[Nillable[str]]):
time_schedule (Optional[Nillable[str]]):
holiday_schedule (Optional[Nillable[str]]):
match_number_portability_status (Optional[Nillable[ReplacementNumberPortabilityStatusList]]):
call_tagged_as_spam (Optional[bool]):
Source code in src/mercury_ocip/commands/commands.py
83030 83031 83032 83033 83034 83035 83036 83037 83038 83039 83040 83041 83042 83043 83044 83045 83046 83047 83048 83049 83050 83051 83052 83053 83054 83055 83056 83057 83058 83059 83060 83061 83062 83063 83064 83065 83066 83067 83068 83069 83070 83071 83072 83073 83074 83075 83076 83077 83078 83079 83080 83081 83082 83083 83084 83085 83086 83087 | |
Responses
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemCommunicationBarringIncomingCriteriaModifyRequest
client = Client()
command = SystemCommunicationBarringIncomingCriteriaModifyRequest(
name=...,
new_name=...,
description=...,
time_schedule=...,
holiday_schedule=...,
match_number_portability_status=...,
call_tagged_as_spam=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip.client import Client
client = Client()
response = client.raw_command("SystemCommunicationBarringIncomingCriteriaModifyRequest",
name=...,
new_name=...,
description=...,
time_schedule=...,
holiday_schedule=...,
match_number_portability_status=...,
call_tagged_as_spam=...,
)
print(response)