# 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 AddressForCreatePoolInput(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 = {
        'capacity': 'int',
        'mode': 'str',
        'rectified_geos': 'list[str]',
        'value': 'str',
        'weight': 'int'
    }

    attribute_map = {
        'capacity': 'Capacity',
        'mode': 'Mode',
        'rectified_geos': 'RectifiedGeos',
        'value': 'Value',
        'weight': 'Weight'
    }

    def __init__(self, capacity=None, mode=None, rectified_geos=None, value=None, weight=None, _configuration=None):  # noqa: E501
        """AddressForCreatePoolInput - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._capacity = None
        self._mode = None
        self._rectified_geos = None
        self._value = None
        self._weight = None
        self.discriminator = None

        if capacity is not None:
            self.capacity = capacity
        if mode is not None:
            self.mode = mode
        if rectified_geos is not None:
            self.rectified_geos = rectified_geos
        if value is not None:
            self.value = value
        if weight is not None:
            self.weight = weight

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


        :return: The capacity of this AddressForCreatePoolInput.  # noqa: E501
        :rtype: int
        """
        return self._capacity

    @capacity.setter
    def capacity(self, capacity):
        """Sets the capacity of this AddressForCreatePoolInput.


        :param capacity: The capacity of this AddressForCreatePoolInput.  # noqa: E501
        :type: int
        """

        self._capacity = capacity

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


        :return: The mode of this AddressForCreatePoolInput.  # noqa: E501
        :rtype: str
        """
        return self._mode

    @mode.setter
    def mode(self, mode):
        """Sets the mode of this AddressForCreatePoolInput.


        :param mode: The mode of this AddressForCreatePoolInput.  # noqa: E501
        :type: str
        """

        self._mode = mode

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


        :return: The rectified_geos of this AddressForCreatePoolInput.  # noqa: E501
        :rtype: list[str]
        """
        return self._rectified_geos

    @rectified_geos.setter
    def rectified_geos(self, rectified_geos):
        """Sets the rectified_geos of this AddressForCreatePoolInput.


        :param rectified_geos: The rectified_geos of this AddressForCreatePoolInput.  # noqa: E501
        :type: list[str]
        """

        self._rectified_geos = rectified_geos

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


        :return: The value of this AddressForCreatePoolInput.  # noqa: E501
        :rtype: str
        """
        return self._value

    @value.setter
    def value(self, value):
        """Sets the value of this AddressForCreatePoolInput.


        :param value: The value of this AddressForCreatePoolInput.  # noqa: E501
        :type: str
        """

        self._value = value

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


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

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


        :param weight: The weight of this AddressForCreatePoolInput.  # 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(AddressForCreatePoolInput, 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, AddressForCreatePoolInput):
            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, AddressForCreatePoolInput):
            return True

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