# 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 UpdatePodResourceApplyNumRequest(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 = {
        'apply_num': 'int',
        'configuration_code': 'str',
        'dc': 'str',
        'product_id': 'str',
        'resource_set_id': 'str'
    }

    attribute_map = {
        'apply_num': 'ApplyNum',
        'configuration_code': 'ConfigurationCode',
        'dc': 'Dc',
        'product_id': 'ProductId',
        'resource_set_id': 'ResourceSetId'
    }

    def __init__(self, apply_num=None, configuration_code=None, dc=None, product_id=None, resource_set_id=None, _configuration=None):  # noqa: E501
        """UpdatePodResourceApplyNumRequest - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._apply_num = None
        self._configuration_code = None
        self._dc = None
        self._product_id = None
        self._resource_set_id = None
        self.discriminator = None

        self.apply_num = apply_num
        if configuration_code is not None:
            self.configuration_code = configuration_code
        if dc is not None:
            self.dc = dc
        self.product_id = product_id
        if resource_set_id is not None:
            self.resource_set_id = resource_set_id

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


        :return: The apply_num of this UpdatePodResourceApplyNumRequest.  # noqa: E501
        :rtype: int
        """
        return self._apply_num

    @apply_num.setter
    def apply_num(self, apply_num):
        """Sets the apply_num of this UpdatePodResourceApplyNumRequest.


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

        self._apply_num = apply_num

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


        :return: The configuration_code of this UpdatePodResourceApplyNumRequest.  # noqa: E501
        :rtype: str
        """
        return self._configuration_code

    @configuration_code.setter
    def configuration_code(self, configuration_code):
        """Sets the configuration_code of this UpdatePodResourceApplyNumRequest.


        :param configuration_code: The configuration_code of this UpdatePodResourceApplyNumRequest.  # noqa: E501
        :type: str
        """

        self._configuration_code = configuration_code

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


        :return: The dc of this UpdatePodResourceApplyNumRequest.  # noqa: E501
        :rtype: str
        """
        return self._dc

    @dc.setter
    def dc(self, dc):
        """Sets the dc of this UpdatePodResourceApplyNumRequest.


        :param dc: The dc of this UpdatePodResourceApplyNumRequest.  # noqa: E501
        :type: str
        """

        self._dc = dc

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


        :return: The product_id of this UpdatePodResourceApplyNumRequest.  # noqa: E501
        :rtype: str
        """
        return self._product_id

    @product_id.setter
    def product_id(self, product_id):
        """Sets the product_id of this UpdatePodResourceApplyNumRequest.


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

        self._product_id = product_id

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


        :return: The resource_set_id of this UpdatePodResourceApplyNumRequest.  # noqa: E501
        :rtype: str
        """
        return self._resource_set_id

    @resource_set_id.setter
    def resource_set_id(self, resource_set_id):
        """Sets the resource_set_id of this UpdatePodResourceApplyNumRequest.


        :param resource_set_id: The resource_set_id of this UpdatePodResourceApplyNumRequest.  # noqa: E501
        :type: str
        """

        self._resource_set_id = resource_set_id

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

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