# coding: utf-8

"""
    waf

    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 DomainForGetDomainInfoOutput(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 = {
        'api_enable_auto_learning': 'int',
        'access_mode': 'int',
        'api_enable': 'int',
        'bot_sequence_enable': 'int',
        'domain': 'str'
    }

    attribute_map = {
        'api_enable_auto_learning': 'APIEnableAutoLearning',
        'access_mode': 'AccessMode',
        'api_enable': 'ApiEnable',
        'bot_sequence_enable': 'BotSequenceEnable',
        'domain': 'Domain'
    }

    def __init__(self, api_enable_auto_learning=None, access_mode=None, api_enable=None, bot_sequence_enable=None, domain=None, _configuration=None):  # noqa: E501
        """DomainForGetDomainInfoOutput - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._api_enable_auto_learning = None
        self._access_mode = None
        self._api_enable = None
        self._bot_sequence_enable = None
        self._domain = None
        self.discriminator = None

        if api_enable_auto_learning is not None:
            self.api_enable_auto_learning = api_enable_auto_learning
        if access_mode is not None:
            self.access_mode = access_mode
        if api_enable is not None:
            self.api_enable = api_enable
        if bot_sequence_enable is not None:
            self.bot_sequence_enable = bot_sequence_enable
        if domain is not None:
            self.domain = domain

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


        :return: The api_enable_auto_learning of this DomainForGetDomainInfoOutput.  # noqa: E501
        :rtype: int
        """
        return self._api_enable_auto_learning

    @api_enable_auto_learning.setter
    def api_enable_auto_learning(self, api_enable_auto_learning):
        """Sets the api_enable_auto_learning of this DomainForGetDomainInfoOutput.


        :param api_enable_auto_learning: The api_enable_auto_learning of this DomainForGetDomainInfoOutput.  # noqa: E501
        :type: int
        """

        self._api_enable_auto_learning = api_enable_auto_learning

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


        :return: The access_mode of this DomainForGetDomainInfoOutput.  # noqa: E501
        :rtype: int
        """
        return self._access_mode

    @access_mode.setter
    def access_mode(self, access_mode):
        """Sets the access_mode of this DomainForGetDomainInfoOutput.


        :param access_mode: The access_mode of this DomainForGetDomainInfoOutput.  # noqa: E501
        :type: int
        """

        self._access_mode = access_mode

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


        :return: The api_enable of this DomainForGetDomainInfoOutput.  # noqa: E501
        :rtype: int
        """
        return self._api_enable

    @api_enable.setter
    def api_enable(self, api_enable):
        """Sets the api_enable of this DomainForGetDomainInfoOutput.


        :param api_enable: The api_enable of this DomainForGetDomainInfoOutput.  # noqa: E501
        :type: int
        """

        self._api_enable = api_enable

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


        :return: The bot_sequence_enable of this DomainForGetDomainInfoOutput.  # noqa: E501
        :rtype: int
        """
        return self._bot_sequence_enable

    @bot_sequence_enable.setter
    def bot_sequence_enable(self, bot_sequence_enable):
        """Sets the bot_sequence_enable of this DomainForGetDomainInfoOutput.


        :param bot_sequence_enable: The bot_sequence_enable of this DomainForGetDomainInfoOutput.  # noqa: E501
        :type: int
        """

        self._bot_sequence_enable = bot_sequence_enable

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


        :return: The domain of this DomainForGetDomainInfoOutput.  # noqa: E501
        :rtype: str
        """
        return self._domain

    @domain.setter
    def domain(self, domain):
        """Sets the domain of this DomainForGetDomainInfoOutput.


        :param domain: The domain of this DomainForGetDomainInfoOutput.  # noqa: E501
        :type: str
        """

        self._domain = domain

    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(DomainForGetDomainInfoOutput, 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, DomainForGetDomainInfoOutput):
            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, DomainForGetDomainInfoOutput):
            return True

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