Skip to content

ProfileAndServiceCallNotifyInfo

Bases: OCIType

This is the configuration parameters for Call Notify service

        The criteria table's column headings are: "Is Active",
        "Criteria Name", "Time Schedule", "Calls From", "Blacklisted" ,"Holiday Schedule"

        The "Calls From" column is a string containing call numbers

Attributes:

call_notify_email_address (Optional[str]):

criteria_table (OCITable):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class ProfileAndServiceCallNotifyInfo(OCIType):
    """This is the configuration parameters for Call Notify service

                The criteria table's column headings are: \"Is Active\",
                \"Criteria Name\", \"Time Schedule\", \"Calls From\", \"Blacklisted\" ,\"Holiday Schedule\"

                The \"Calls From\" column is a string containing call numbers

    Attributes:

        call_notify_email_address (Optional[str]):

        criteria_table (OCITable):

    """

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

    criteria_table: OCITable = field(metadata={"alias": "criteriaTable"})