GroupHuntGroupModifyInstanceWeightedCallDistributionRequest
Bases: OCIRequest
Request to modify the weighted call distribution of a Hunt Group instance. The response is either SuccessResponse or ErrorResponse. NOTE: Prior to release 14, any agents who were not in the list kept their existing weight setting. In release 14, any agents who are not in the list will have their weight set to 0.
Attributes:
service_user_id (str):
agent_weight (Optional[List[HuntAgentWeight]]):
Source code in src/mercury_ocip/commands/commands.py
Responses
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupHuntGroupModifyInstanceWeightedCallDistributionRequest
client = Client()
command = GroupHuntGroupModifyInstanceWeightedCallDistributionRequest(
service_user_id=...,
agent_weight=...,
)
response = client.command(command)
print(response)