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