# 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 UpdateTamperProofRequest(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 = {
        'client_ip': 'str',
        'description': 'str',
        'enable': 'int',
        'host': 'str',
        'id': 'int',
        'name': 'str',
        'project_name': 'str',
        'url': 'str'
    }

    attribute_map = {
        'client_ip': 'ClientIp',
        'description': 'Description',
        'enable': 'Enable',
        'host': 'Host',
        'id': 'Id',
        'name': 'Name',
        'project_name': 'ProjectName',
        'url': 'Url'
    }

    def __init__(self, client_ip=None, description=None, enable=None, host=None, id=None, name=None, project_name=None, url=None, _configuration=None):  # noqa: E501
        """UpdateTamperProofRequest - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._client_ip = None
        self._description = None
        self._enable = None
        self._host = None
        self._id = None
        self._name = None
        self._project_name = None
        self._url = None
        self.discriminator = None

        if client_ip is not None:
            self.client_ip = client_ip
        if description is not None:
            self.description = description
        self.enable = enable
        self.host = host
        if id is not None:
            self.id = id
        self.name = name
        if project_name is not None:
            self.project_name = project_name
        self.url = url

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


        :return: The client_ip of this UpdateTamperProofRequest.  # noqa: E501
        :rtype: str
        """
        return self._client_ip

    @client_ip.setter
    def client_ip(self, client_ip):
        """Sets the client_ip of this UpdateTamperProofRequest.


        :param client_ip: The client_ip of this UpdateTamperProofRequest.  # noqa: E501
        :type: str
        """

        self._client_ip = client_ip

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


        :return: The description of this UpdateTamperProofRequest.  # noqa: E501
        :rtype: str
        """
        return self._description

    @description.setter
    def description(self, description):
        """Sets the description of this UpdateTamperProofRequest.


        :param description: The description of this UpdateTamperProofRequest.  # noqa: E501
        :type: str
        """

        self._description = description

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


        :return: The enable of this UpdateTamperProofRequest.  # noqa: E501
        :rtype: int
        """
        return self._enable

    @enable.setter
    def enable(self, enable):
        """Sets the enable of this UpdateTamperProofRequest.


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

        self._enable = enable

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


        :return: The host of this UpdateTamperProofRequest.  # noqa: E501
        :rtype: str
        """
        return self._host

    @host.setter
    def host(self, host):
        """Sets the host of this UpdateTamperProofRequest.


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

        self._host = host

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


        :return: The id of this UpdateTamperProofRequest.  # noqa: E501
        :rtype: int
        """
        return self._id

    @id.setter
    def id(self, id):
        """Sets the id of this UpdateTamperProofRequest.


        :param id: The id of this UpdateTamperProofRequest.  # noqa: E501
        :type: int
        """

        self._id = id

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


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

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


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

        self._name = name

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


        :return: The project_name of this UpdateTamperProofRequest.  # noqa: E501
        :rtype: str
        """
        return self._project_name

    @project_name.setter
    def project_name(self, project_name):
        """Sets the project_name of this UpdateTamperProofRequest.


        :param project_name: The project_name of this UpdateTamperProofRequest.  # noqa: E501
        :type: str
        """

        self._project_name = project_name

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


        :return: The url of this UpdateTamperProofRequest.  # noqa: E501
        :rtype: str
        """
        return self._url

    @url.setter
    def url(self, url):
        """Sets the url of this UpdateTamperProofRequest.


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

        self._url = url

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

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