# coding: utf-8

"""
    seccenter20240508

    No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)  # noqa: E501

    OpenAPI spec version: common-version
    
    Generated by: https://github.com/swagger-api/swagger-codegen.git
"""


import pprint
import re  # noqa: F401

import six

from volcenginesdkcore.configuration import Configuration


class GetAIAlarmJudgeConfigResponse(object):
    """NOTE: This class is auto generated by the swagger code generator program.

    Do not edit the class manually.
    """

    """
    Attributes:
      swagger_types (dict): The key is attribute name
                            and the value is attribute type.
      attribute_map (dict): The key is attribute name
                            and the value is json key in definition.
    """
    swagger_types = {
        'auto_ai_judge_alarm': 'bool',
        'auto_handle': 'bool',
        'auto_handle_list': 'list[str]',
        'manager_id': 'str'
    }

    attribute_map = {
        'auto_ai_judge_alarm': 'AutoAIJudgeAlarm',
        'auto_handle': 'AutoHandle',
        'auto_handle_list': 'AutoHandleList',
        'manager_id': 'ManagerID'
    }

    def __init__(self, auto_ai_judge_alarm=None, auto_handle=None, auto_handle_list=None, manager_id=None, _configuration=None):  # noqa: E501
        """GetAIAlarmJudgeConfigResponse - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._auto_ai_judge_alarm = None
        self._auto_handle = None
        self._auto_handle_list = None
        self._manager_id = None
        self.discriminator = None

        if auto_ai_judge_alarm is not None:
            self.auto_ai_judge_alarm = auto_ai_judge_alarm
        if auto_handle is not None:
            self.auto_handle = auto_handle
        if auto_handle_list is not None:
            self.auto_handle_list = auto_handle_list
        if manager_id is not None:
            self.manager_id = manager_id

    @property
    def auto_ai_judge_alarm(self):
        """Gets the auto_ai_judge_alarm of this GetAIAlarmJudgeConfigResponse.  # noqa: E501


        :return: The auto_ai_judge_alarm of this GetAIAlarmJudgeConfigResponse.  # noqa: E501
        :rtype: bool
        """
        return self._auto_ai_judge_alarm

    @auto_ai_judge_alarm.setter
    def auto_ai_judge_alarm(self, auto_ai_judge_alarm):
        """Sets the auto_ai_judge_alarm of this GetAIAlarmJudgeConfigResponse.


        :param auto_ai_judge_alarm: The auto_ai_judge_alarm of this GetAIAlarmJudgeConfigResponse.  # noqa: E501
        :type: bool
        """

        self._auto_ai_judge_alarm = auto_ai_judge_alarm

    @property
    def auto_handle(self):
        """Gets the auto_handle of this GetAIAlarmJudgeConfigResponse.  # noqa: E501


        :return: The auto_handle of this GetAIAlarmJudgeConfigResponse.  # noqa: E501
        :rtype: bool
        """
        return self._auto_handle

    @auto_handle.setter
    def auto_handle(self, auto_handle):
        """Sets the auto_handle of this GetAIAlarmJudgeConfigResponse.


        :param auto_handle: The auto_handle of this GetAIAlarmJudgeConfigResponse.  # noqa: E501
        :type: bool
        """

        self._auto_handle = auto_handle

    @property
    def auto_handle_list(self):
        """Gets the auto_handle_list of this GetAIAlarmJudgeConfigResponse.  # noqa: E501


        :return: The auto_handle_list of this GetAIAlarmJudgeConfigResponse.  # noqa: E501
        :rtype: list[str]
        """
        return self._auto_handle_list

    @auto_handle_list.setter
    def auto_handle_list(self, auto_handle_list):
        """Sets the auto_handle_list of this GetAIAlarmJudgeConfigResponse.


        :param auto_handle_list: The auto_handle_list of this GetAIAlarmJudgeConfigResponse.  # noqa: E501
        :type: list[str]
        """

        self._auto_handle_list = auto_handle_list

    @property
    def manager_id(self):
        """Gets the manager_id of this GetAIAlarmJudgeConfigResponse.  # noqa: E501


        :return: The manager_id of this GetAIAlarmJudgeConfigResponse.  # noqa: E501
        :rtype: str
        """
        return self._manager_id

    @manager_id.setter
    def manager_id(self, manager_id):
        """Sets the manager_id of this GetAIAlarmJudgeConfigResponse.


        :param manager_id: The manager_id of this GetAIAlarmJudgeConfigResponse.  # noqa: E501
        :type: str
        """

        self._manager_id = manager_id

    def to_dict(self):
        """Returns the model properties as a dict"""
        result = {}

        for attr, _ in six.iteritems(self.swagger_types):
            value = getattr(self, attr)
            if isinstance(value, list):
                result[attr] = list(map(
                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
                    value
                ))
            elif hasattr(value, "to_dict"):
                result[attr] = value.to_dict()
            elif isinstance(value, dict):
                result[attr] = dict(map(
                    lambda item: (item[0], item[1].to_dict())
                    if hasattr(item[1], "to_dict") else item,
                    value.items()
                ))
            else:
                result[attr] = value
        if issubclass(GetAIAlarmJudgeConfigResponse, dict):
            for key, value in self.items():
                result[key] = value

        return result

    def to_str(self):
        """Returns the string representation of the model"""
        return pprint.pformat(self.to_dict())

    def __repr__(self):
        """For `print` and `pprint`"""
        return self.to_str()

    def __eq__(self, other):
        """Returns true if both objects are equal"""
        if not isinstance(other, GetAIAlarmJudgeConfigResponse):
            return False

        return self.to_dict() == other.to_dict()

    def __ne__(self, other):
        """Returns true if both objects are not equal"""
        if not isinstance(other, GetAIAlarmJudgeConfigResponse):
            return True

        return self.to_dict() != other.to_dict()
