Skip to content

CallCenterScheduledReportDNISSelection

Bases: OCIType

Either all DNIS under the specified Call Center or list of DNIS.

Attributes:

service_user_id (str):

all_dnis (Optional[bool]):

name (Optional[List[str]]):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class CallCenterScheduledReportDNISSelection(OCIType):
    """Either all DNIS under the specified Call Center or list of DNIS.

    Attributes:

        service_user_id (str):

        all_dnis (Optional[bool]):

        name (Optional[List[str]]):

    """

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

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

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