# coding: utf-8

"""
    natgateway

    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 CreateNatIpRequest(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 = {
        'nat_gateway_id': 'str',
        'nat_ip': 'str',
        'nat_ip_description': 'str',
        'nat_ip_name': 'str'
    }

    attribute_map = {
        'nat_gateway_id': 'NatGatewayId',
        'nat_ip': 'NatIp',
        'nat_ip_description': 'NatIpDescription',
        'nat_ip_name': 'NatIpName'
    }

    def __init__(self, nat_gateway_id=None, nat_ip=None, nat_ip_description=None, nat_ip_name=None, _configuration=None):  # noqa: E501
        """CreateNatIpRequest - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._nat_gateway_id = None
        self._nat_ip = None
        self._nat_ip_description = None
        self._nat_ip_name = None
        self.discriminator = None

        self.nat_gateway_id = nat_gateway_id
        if nat_ip is not None:
            self.nat_ip = nat_ip
        if nat_ip_description is not None:
            self.nat_ip_description = nat_ip_description
        if nat_ip_name is not None:
            self.nat_ip_name = nat_ip_name

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


        :return: The nat_gateway_id of this CreateNatIpRequest.  # noqa: E501
        :rtype: str
        """
        return self._nat_gateway_id

    @nat_gateway_id.setter
    def nat_gateway_id(self, nat_gateway_id):
        """Sets the nat_gateway_id of this CreateNatIpRequest.


        :param nat_gateway_id: The nat_gateway_id of this CreateNatIpRequest.  # noqa: E501
        :type: str
        """
        if self._configuration.client_side_validation and nat_gateway_id is None:
            raise ValueError("Invalid value for `nat_gateway_id`, must not be `None`")  # noqa: E501

        self._nat_gateway_id = nat_gateway_id

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


        :return: The nat_ip of this CreateNatIpRequest.  # noqa: E501
        :rtype: str
        """
        return self._nat_ip

    @nat_ip.setter
    def nat_ip(self, nat_ip):
        """Sets the nat_ip of this CreateNatIpRequest.


        :param nat_ip: The nat_ip of this CreateNatIpRequest.  # noqa: E501
        :type: str
        """

        self._nat_ip = nat_ip

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


        :return: The nat_ip_description of this CreateNatIpRequest.  # noqa: E501
        :rtype: str
        """
        return self._nat_ip_description

    @nat_ip_description.setter
    def nat_ip_description(self, nat_ip_description):
        """Sets the nat_ip_description of this CreateNatIpRequest.


        :param nat_ip_description: The nat_ip_description of this CreateNatIpRequest.  # noqa: E501
        :type: str
        """

        self._nat_ip_description = nat_ip_description

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


        :return: The nat_ip_name of this CreateNatIpRequest.  # noqa: E501
        :rtype: str
        """
        return self._nat_ip_name

    @nat_ip_name.setter
    def nat_ip_name(self, nat_ip_name):
        """Sets the nat_ip_name of this CreateNatIpRequest.


        :param nat_ip_name: The nat_ip_name of this CreateNatIpRequest.  # noqa: E501
        :type: str
        """

        self._nat_ip_name = nat_ip_name

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

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