# coding: utf-8

"""
    gtm

    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 PoolForGetRuleOutput(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 = {
        'address': 'list[AddressForGetRuleOutput]',
        'inactive_addr_count': 'int',
        'name': 'str',
        'pool_id': 'str',
        'weight': 'int'
    }

    attribute_map = {
        'address': 'Address',
        'inactive_addr_count': 'InactiveAddrCount',
        'name': 'Name',
        'pool_id': 'PoolId',
        'weight': 'Weight'
    }

    def __init__(self, address=None, inactive_addr_count=None, name=None, pool_id=None, weight=None, _configuration=None):  # noqa: E501
        """PoolForGetRuleOutput - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._address = None
        self._inactive_addr_count = None
        self._name = None
        self._pool_id = None
        self._weight = None
        self.discriminator = None

        if address is not None:
            self.address = address
        if inactive_addr_count is not None:
            self.inactive_addr_count = inactive_addr_count
        if name is not None:
            self.name = name
        if pool_id is not None:
            self.pool_id = pool_id
        if weight is not None:
            self.weight = weight

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


        :return: The address of this PoolForGetRuleOutput.  # noqa: E501
        :rtype: list[AddressForGetRuleOutput]
        """
        return self._address

    @address.setter
    def address(self, address):
        """Sets the address of this PoolForGetRuleOutput.


        :param address: The address of this PoolForGetRuleOutput.  # noqa: E501
        :type: list[AddressForGetRuleOutput]
        """

        self._address = address

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


        :return: The inactive_addr_count of this PoolForGetRuleOutput.  # noqa: E501
        :rtype: int
        """
        return self._inactive_addr_count

    @inactive_addr_count.setter
    def inactive_addr_count(self, inactive_addr_count):
        """Sets the inactive_addr_count of this PoolForGetRuleOutput.


        :param inactive_addr_count: The inactive_addr_count of this PoolForGetRuleOutput.  # noqa: E501
        :type: int
        """

        self._inactive_addr_count = inactive_addr_count

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


        :return: The name of this PoolForGetRuleOutput.  # noqa: E501
        :rtype: str
        """
        return self._name

    @name.setter
    def name(self, name):
        """Sets the name of this PoolForGetRuleOutput.


        :param name: The name of this PoolForGetRuleOutput.  # noqa: E501
        :type: str
        """

        self._name = name

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


        :return: The pool_id of this PoolForGetRuleOutput.  # noqa: E501
        :rtype: str
        """
        return self._pool_id

    @pool_id.setter
    def pool_id(self, pool_id):
        """Sets the pool_id of this PoolForGetRuleOutput.


        :param pool_id: The pool_id of this PoolForGetRuleOutput.  # noqa: E501
        :type: str
        """

        self._pool_id = pool_id

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


        :return: The weight of this PoolForGetRuleOutput.  # noqa: E501
        :rtype: int
        """
        return self._weight

    @weight.setter
    def weight(self, weight):
        """Sets the weight of this PoolForGetRuleOutput.


        :param weight: The weight of this PoolForGetRuleOutput.  # noqa: E501
        :type: int
        """

        self._weight = weight

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

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