CallCenterAgentSettings
Bases: OCIRequest
Specifies an agent's settings for a particular Call Center. The skillLevel only applies to Premium agents.
Attributes:
service_user_id (str):
available (Optional[bool]):
skill_level (Optional[int]):
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 CallCenterAgentSettings
client = Client()
command = CallCenterAgentSettings(
service_user_id=...,
available=...,
skill_level=...,
)
response = client.command(command)
print(response)