Skip to content

CallCenterReportTemplateKey

Bases: OCIType

Uniquely identifies a call center report template created in the system.

Attributes:

template_level (str):

template_name (str):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class CallCenterReportTemplateKey(OCIType):
    """Uniquely identifies a call center report template created in the system.

    Attributes:

        template_level (str):

        template_name (str):

    """

    template_level: str = field(metadata={"alias": "templateLevel"})

    template_name: str = field(metadata={"alias": "templateName"})