Skip to content

CallCenterScheduledReportCallCenterSelectionRead

Bases: OCIType

User for admin read. Either all call centers or 2 lists of call centers: one for current and one for deleted call centers.

Attributes:

all_call_center (Optional[bool]):

current_user_id (Optional[List[str]]):

past_user_id (Optional[List[str]]):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class CallCenterScheduledReportCallCenterSelectionRead(OCIType):
    """User for admin read. Either all call centers or 2 lists of call centers: one for current and one for deleted call centers.

    Attributes:

        all_call_center (Optional[bool]):

        current_user_id (Optional[List[str]]):

        past_user_id (Optional[List[str]]):

    """

    all_call_center: Optional[bool] = field(
        default=None, metadata={"alias": "allCallCenter"}
    )

    current_user_id: Optional[List[str]] = field(
        default=None, metadata={"alias": "currentUserId"}
    )

    past_user_id: Optional[List[str]] = field(
        default=None, metadata={"alias": "pastUserId"}
    )