# coding: utf-8

"""
    rds_mysql_v2

    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 DescribeUserUploadBackupsRequest(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 = {
        'backup_file_name': 'str',
        'backup_id': 'str',
        'limit': 'int',
        'offset': 'int',
        'project_name': 'str',
        'tos_info': 'str'
    }

    attribute_map = {
        'backup_file_name': 'BackupFileName',
        'backup_id': 'BackupId',
        'limit': 'Limit',
        'offset': 'Offset',
        'project_name': 'ProjectName',
        'tos_info': 'TosInfo'
    }

    def __init__(self, backup_file_name=None, backup_id=None, limit=None, offset=None, project_name=None, tos_info=None, _configuration=None):  # noqa: E501
        """DescribeUserUploadBackupsRequest - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._backup_file_name = None
        self._backup_id = None
        self._limit = None
        self._offset = None
        self._project_name = None
        self._tos_info = None
        self.discriminator = None

        if backup_file_name is not None:
            self.backup_file_name = backup_file_name
        if backup_id is not None:
            self.backup_id = backup_id
        self.limit = limit
        self.offset = offset
        self.project_name = project_name
        if tos_info is not None:
            self.tos_info = tos_info

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


        :return: The backup_file_name of this DescribeUserUploadBackupsRequest.  # noqa: E501
        :rtype: str
        """
        return self._backup_file_name

    @backup_file_name.setter
    def backup_file_name(self, backup_file_name):
        """Sets the backup_file_name of this DescribeUserUploadBackupsRequest.


        :param backup_file_name: The backup_file_name of this DescribeUserUploadBackupsRequest.  # noqa: E501
        :type: str
        """

        self._backup_file_name = backup_file_name

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


        :return: The backup_id of this DescribeUserUploadBackupsRequest.  # noqa: E501
        :rtype: str
        """
        return self._backup_id

    @backup_id.setter
    def backup_id(self, backup_id):
        """Sets the backup_id of this DescribeUserUploadBackupsRequest.


        :param backup_id: The backup_id of this DescribeUserUploadBackupsRequest.  # noqa: E501
        :type: str
        """

        self._backup_id = backup_id

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


        :return: The limit of this DescribeUserUploadBackupsRequest.  # noqa: E501
        :rtype: int
        """
        return self._limit

    @limit.setter
    def limit(self, limit):
        """Sets the limit of this DescribeUserUploadBackupsRequest.


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

        self._limit = limit

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


        :return: The offset of this DescribeUserUploadBackupsRequest.  # noqa: E501
        :rtype: int
        """
        return self._offset

    @offset.setter
    def offset(self, offset):
        """Sets the offset of this DescribeUserUploadBackupsRequest.


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

        self._offset = offset

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


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

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


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

        self._project_name = project_name

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


        :return: The tos_info of this DescribeUserUploadBackupsRequest.  # noqa: E501
        :rtype: str
        """
        return self._tos_info

    @tos_info.setter
    def tos_info(self, tos_info):
        """Sets the tos_info of this DescribeUserUploadBackupsRequest.


        :param tos_info: The tos_info of this DescribeUserUploadBackupsRequest.  # noqa: E501
        :type: str
        """

        self._tos_info = tos_info

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

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