SystemPhoneListsModifyRequest
Bases: OCIRequest
Modify system phone list settings.
Attributes:
allow_special_numbers_in_phone_lists (Optional[bool]):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
:: mercury_ocip_fast.commands.base_command.ErrorResponse
:: mercury_ocip_fast.commands.base_command.SuccessResponse
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemPhoneListsModifyRequest
client = Client()
command = SystemPhoneListsModifyRequest(
allow_special_numbers_in_phone_lists=...,
)
response = client.command(command)
print(response)