Skip to content

CallCenterRoutingPriorityOrder

Bases: OCIType

Call center routing order

Attributes:

service_user_id (str):

priority (float):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class CallCenterRoutingPriorityOrder(OCIType):
    """Call center routing order

    Attributes:

        service_user_id (str):

        priority (float):

    """

    service_user_id: str = field(metadata={"alias": "serviceUserId"})

    priority: float = field(metadata={"alias": "priority"})