# coding: utf-8

"""
    acep

    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 CreatePortMappingRuleResponse(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 = {
        'create_at': 'int',
        'port_mapping_rule_id': 'str',
        'protocol': 'str',
        'source_port': 'int'
    }

    attribute_map = {
        'create_at': 'CreateAt',
        'port_mapping_rule_id': 'PortMappingRuleId',
        'protocol': 'Protocol',
        'source_port': 'SourcePort'
    }

    def __init__(self, create_at=None, port_mapping_rule_id=None, protocol=None, source_port=None, _configuration=None):  # noqa: E501
        """CreatePortMappingRuleResponse - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._create_at = None
        self._port_mapping_rule_id = None
        self._protocol = None
        self._source_port = None
        self.discriminator = None

        if create_at is not None:
            self.create_at = create_at
        if port_mapping_rule_id is not None:
            self.port_mapping_rule_id = port_mapping_rule_id
        if protocol is not None:
            self.protocol = protocol
        if source_port is not None:
            self.source_port = source_port

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


        :return: The create_at of this CreatePortMappingRuleResponse.  # noqa: E501
        :rtype: int
        """
        return self._create_at

    @create_at.setter
    def create_at(self, create_at):
        """Sets the create_at of this CreatePortMappingRuleResponse.


        :param create_at: The create_at of this CreatePortMappingRuleResponse.  # noqa: E501
        :type: int
        """

        self._create_at = create_at

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


        :return: The port_mapping_rule_id of this CreatePortMappingRuleResponse.  # noqa: E501
        :rtype: str
        """
        return self._port_mapping_rule_id

    @port_mapping_rule_id.setter
    def port_mapping_rule_id(self, port_mapping_rule_id):
        """Sets the port_mapping_rule_id of this CreatePortMappingRuleResponse.


        :param port_mapping_rule_id: The port_mapping_rule_id of this CreatePortMappingRuleResponse.  # noqa: E501
        :type: str
        """

        self._port_mapping_rule_id = port_mapping_rule_id

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


        :return: The protocol of this CreatePortMappingRuleResponse.  # noqa: E501
        :rtype: str
        """
        return self._protocol

    @protocol.setter
    def protocol(self, protocol):
        """Sets the protocol of this CreatePortMappingRuleResponse.


        :param protocol: The protocol of this CreatePortMappingRuleResponse.  # noqa: E501
        :type: str
        """

        self._protocol = protocol

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


        :return: The source_port of this CreatePortMappingRuleResponse.  # noqa: E501
        :rtype: int
        """
        return self._source_port

    @source_port.setter
    def source_port(self, source_port):
        """Sets the source_port of this CreatePortMappingRuleResponse.


        :param source_port: The source_port of this CreatePortMappingRuleResponse.  # noqa: E501
        :type: int
        """

        self._source_port = source_port

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

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