# coding: utf-8

"""
    rds_postgresql

    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 GetBackupDownloadLinkResponse(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_description': 'str',
        'backup_download_link': 'str',
        'backup_file_name': 'str',
        'backup_file_size': 'int',
        'backup_id': 'str',
        'backup_method': 'str',
        'inner_backup_download_link': 'str',
        'instance_id': 'str',
        'link_expired_time': 'str',
        'prepare_progess': 'int'
    }

    attribute_map = {
        'backup_description': 'BackupDescription',
        'backup_download_link': 'BackupDownloadLink',
        'backup_file_name': 'BackupFileName',
        'backup_file_size': 'BackupFileSize',
        'backup_id': 'BackupId',
        'backup_method': 'BackupMethod',
        'inner_backup_download_link': 'InnerBackupDownloadLink',
        'instance_id': 'InstanceId',
        'link_expired_time': 'LinkExpiredTime',
        'prepare_progess': 'PrepareProgess'
    }

    def __init__(self, backup_description=None, backup_download_link=None, backup_file_name=None, backup_file_size=None, backup_id=None, backup_method=None, inner_backup_download_link=None, instance_id=None, link_expired_time=None, prepare_progess=None, _configuration=None):  # noqa: E501
        """GetBackupDownloadLinkResponse - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._backup_description = None
        self._backup_download_link = None
        self._backup_file_name = None
        self._backup_file_size = None
        self._backup_id = None
        self._backup_method = None
        self._inner_backup_download_link = None
        self._instance_id = None
        self._link_expired_time = None
        self._prepare_progess = None
        self.discriminator = None

        if backup_description is not None:
            self.backup_description = backup_description
        if backup_download_link is not None:
            self.backup_download_link = backup_download_link
        if backup_file_name is not None:
            self.backup_file_name = backup_file_name
        if backup_file_size is not None:
            self.backup_file_size = backup_file_size
        if backup_id is not None:
            self.backup_id = backup_id
        if backup_method is not None:
            self.backup_method = backup_method
        if inner_backup_download_link is not None:
            self.inner_backup_download_link = inner_backup_download_link
        if instance_id is not None:
            self.instance_id = instance_id
        if link_expired_time is not None:
            self.link_expired_time = link_expired_time
        if prepare_progess is not None:
            self.prepare_progess = prepare_progess

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


        :return: The backup_description of this GetBackupDownloadLinkResponse.  # noqa: E501
        :rtype: str
        """
        return self._backup_description

    @backup_description.setter
    def backup_description(self, backup_description):
        """Sets the backup_description of this GetBackupDownloadLinkResponse.


        :param backup_description: The backup_description of this GetBackupDownloadLinkResponse.  # noqa: E501
        :type: str
        """

        self._backup_description = backup_description

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


        :return: The backup_download_link of this GetBackupDownloadLinkResponse.  # noqa: E501
        :rtype: str
        """
        return self._backup_download_link

    @backup_download_link.setter
    def backup_download_link(self, backup_download_link):
        """Sets the backup_download_link of this GetBackupDownloadLinkResponse.


        :param backup_download_link: The backup_download_link of this GetBackupDownloadLinkResponse.  # noqa: E501
        :type: str
        """

        self._backup_download_link = backup_download_link

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


        :return: The backup_file_name of this GetBackupDownloadLinkResponse.  # 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 GetBackupDownloadLinkResponse.


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

        self._backup_file_name = backup_file_name

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


        :return: The backup_file_size of this GetBackupDownloadLinkResponse.  # noqa: E501
        :rtype: int
        """
        return self._backup_file_size

    @backup_file_size.setter
    def backup_file_size(self, backup_file_size):
        """Sets the backup_file_size of this GetBackupDownloadLinkResponse.


        :param backup_file_size: The backup_file_size of this GetBackupDownloadLinkResponse.  # noqa: E501
        :type: int
        """

        self._backup_file_size = backup_file_size

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


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

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


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

        self._backup_id = backup_id

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


        :return: The backup_method of this GetBackupDownloadLinkResponse.  # noqa: E501
        :rtype: str
        """
        return self._backup_method

    @backup_method.setter
    def backup_method(self, backup_method):
        """Sets the backup_method of this GetBackupDownloadLinkResponse.


        :param backup_method: The backup_method of this GetBackupDownloadLinkResponse.  # noqa: E501
        :type: str
        """

        self._backup_method = backup_method

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


        :return: The inner_backup_download_link of this GetBackupDownloadLinkResponse.  # noqa: E501
        :rtype: str
        """
        return self._inner_backup_download_link

    @inner_backup_download_link.setter
    def inner_backup_download_link(self, inner_backup_download_link):
        """Sets the inner_backup_download_link of this GetBackupDownloadLinkResponse.


        :param inner_backup_download_link: The inner_backup_download_link of this GetBackupDownloadLinkResponse.  # noqa: E501
        :type: str
        """

        self._inner_backup_download_link = inner_backup_download_link

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


        :return: The instance_id of this GetBackupDownloadLinkResponse.  # noqa: E501
        :rtype: str
        """
        return self._instance_id

    @instance_id.setter
    def instance_id(self, instance_id):
        """Sets the instance_id of this GetBackupDownloadLinkResponse.


        :param instance_id: The instance_id of this GetBackupDownloadLinkResponse.  # noqa: E501
        :type: str
        """

        self._instance_id = instance_id

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


        :return: The link_expired_time of this GetBackupDownloadLinkResponse.  # noqa: E501
        :rtype: str
        """
        return self._link_expired_time

    @link_expired_time.setter
    def link_expired_time(self, link_expired_time):
        """Sets the link_expired_time of this GetBackupDownloadLinkResponse.


        :param link_expired_time: The link_expired_time of this GetBackupDownloadLinkResponse.  # noqa: E501
        :type: str
        """

        self._link_expired_time = link_expired_time

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


        :return: The prepare_progess of this GetBackupDownloadLinkResponse.  # noqa: E501
        :rtype: int
        """
        return self._prepare_progess

    @prepare_progess.setter
    def prepare_progess(self, prepare_progess):
        """Sets the prepare_progess of this GetBackupDownloadLinkResponse.


        :param prepare_progess: The prepare_progess of this GetBackupDownloadLinkResponse.  # noqa: E501
        :type: int
        """

        self._prepare_progess = prepare_progess

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

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