GroupCallCenterModifyDNISParametersRequest
Bases: OCIRequest
Modify the setting that are configured for all the DNIS in a Call Center. The response is either SuccessResponse or ErrorResponse.
Attributes:
service_user_id (str):
display_dnis_number (Optional[bool]):
display_dnis_name (Optional[bool]):
promote_calls_from_priority1to0 (Optional[bool]):
promote_calls_from_priority2to1 (Optional[bool]):
promote_calls_from_priority3to2 (Optional[bool]):
promote_calls_from_priority1to0_seconds (Optional[int]):
promote_calls_from_priority2to1_seconds (Optional[int]):
promote_calls_from_priority3to2_seconds (Optional[int]):
Source code in src/mercury_ocip_fast/commands/commands.py
39210 39211 39212 39213 39214 39215 39216 39217 39218 39219 39220 39221 39222 39223 39224 39225 39226 39227 39228 39229 39230 39231 39232 39233 39234 39235 39236 39237 39238 39239 39240 39241 39242 39243 39244 39245 39246 39247 39248 39249 39250 39251 39252 39253 39254 39255 39256 39257 39258 39259 39260 39261 39262 39263 39264 39265 39266 39267 39268 39269 | |
Responses
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import GroupCallCenterModifyDNISParametersRequest
client = Client()
command = GroupCallCenterModifyDNISParametersRequest(
service_user_id=...,
display_dnis_number=...,
display_dnis_name=...,
promote_calls_from_priority1to0=...,
promote_calls_from_priority2to1=...,
promote_calls_from_priority3to2=...,
promote_calls_from_priority1to0_seconds=...,
promote_calls_from_priority2to1_seconds=...,
promote_calls_from_priority3to2_seconds=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip_fast.client import Client
client = Client()
response = client.raw_command("GroupCallCenterModifyDNISParametersRequest",
service_user_id=...,
display_dnis_number=...,
display_dnis_name=...,
promote_calls_from_priority1to0=...,
promote_calls_from_priority2to1=...,
promote_calls_from_priority3to2=...,
promote_calls_from_priority1to0_seconds=...,
promote_calls_from_priority2to1_seconds=...,
promote_calls_from_priority3to2_seconds=...,
)
print(response)