# coding: utf-8

"""
    seccenter20240508

    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 DescribeLastWeekFileChangeTrendsResponse(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 = {
        'last_seven_change': 'int',
        'point_info': 'list[PointInfoForDescribeLastWeekFileChangeTrendsOutput]',
        'today_change': 'int',
        'last_seven_change': 'int',
        'point_info': 'list[PointInfoForDescribeLastWeekFileChangeTrendsOutput]',
        'today_change': 'int'
    }

    attribute_map = {
        'last_seven_change': 'LastSevenChange',
        'point_info': 'PointInfo',
        'today_change': 'TodayChange',
        'last_seven_change': 'last_seven_change',
        'point_info': 'point_info',
        'today_change': 'today_change'
    }

    def __init__(self, last_seven_change=None, point_info=None, today_change=None, last_seven_change=None, point_info=None, today_change=None, _configuration=None):  # noqa: E501
        """DescribeLastWeekFileChangeTrendsResponse - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._last_seven_change = None
        self._point_info = None
        self._today_change = None
        self._last_seven_change = None
        self._point_info = None
        self._today_change = None
        self.discriminator = None

        if last_seven_change is not None:
            self.last_seven_change = last_seven_change
        if point_info is not None:
            self.point_info = point_info
        if today_change is not None:
            self.today_change = today_change
        if last_seven_change is not None:
            self.last_seven_change = last_seven_change
        if point_info is not None:
            self.point_info = point_info
        if today_change is not None:
            self.today_change = today_change

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


        :return: The last_seven_change of this DescribeLastWeekFileChangeTrendsResponse.  # noqa: E501
        :rtype: int
        """
        return self._last_seven_change

    @last_seven_change.setter
    def last_seven_change(self, last_seven_change):
        """Sets the last_seven_change of this DescribeLastWeekFileChangeTrendsResponse.


        :param last_seven_change: The last_seven_change of this DescribeLastWeekFileChangeTrendsResponse.  # noqa: E501
        :type: int
        """

        self._last_seven_change = last_seven_change

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


        :return: The point_info of this DescribeLastWeekFileChangeTrendsResponse.  # noqa: E501
        :rtype: list[PointInfoForDescribeLastWeekFileChangeTrendsOutput]
        """
        return self._point_info

    @point_info.setter
    def point_info(self, point_info):
        """Sets the point_info of this DescribeLastWeekFileChangeTrendsResponse.


        :param point_info: The point_info of this DescribeLastWeekFileChangeTrendsResponse.  # noqa: E501
        :type: list[PointInfoForDescribeLastWeekFileChangeTrendsOutput]
        """

        self._point_info = point_info

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


        :return: The today_change of this DescribeLastWeekFileChangeTrendsResponse.  # noqa: E501
        :rtype: int
        """
        return self._today_change

    @today_change.setter
    def today_change(self, today_change):
        """Sets the today_change of this DescribeLastWeekFileChangeTrendsResponse.


        :param today_change: The today_change of this DescribeLastWeekFileChangeTrendsResponse.  # noqa: E501
        :type: int
        """

        self._today_change = today_change

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


        :return: The last_seven_change of this DescribeLastWeekFileChangeTrendsResponse.  # noqa: E501
        :rtype: int
        """
        return self._last_seven_change

    @last_seven_change.setter
    def last_seven_change(self, last_seven_change):
        """Sets the last_seven_change of this DescribeLastWeekFileChangeTrendsResponse.


        :param last_seven_change: The last_seven_change of this DescribeLastWeekFileChangeTrendsResponse.  # noqa: E501
        :type: int
        """

        self._last_seven_change = last_seven_change

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


        :return: The point_info of this DescribeLastWeekFileChangeTrendsResponse.  # noqa: E501
        :rtype: list[PointInfoForDescribeLastWeekFileChangeTrendsOutput]
        """
        return self._point_info

    @point_info.setter
    def point_info(self, point_info):
        """Sets the point_info of this DescribeLastWeekFileChangeTrendsResponse.


        :param point_info: The point_info of this DescribeLastWeekFileChangeTrendsResponse.  # noqa: E501
        :type: list[PointInfoForDescribeLastWeekFileChangeTrendsOutput]
        """

        self._point_info = point_info

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


        :return: The today_change of this DescribeLastWeekFileChangeTrendsResponse.  # noqa: E501
        :rtype: int
        """
        return self._today_change

    @today_change.setter
    def today_change(self, today_change):
        """Sets the today_change of this DescribeLastWeekFileChangeTrendsResponse.


        :param today_change: The today_change of this DescribeLastWeekFileChangeTrendsResponse.  # noqa: E501
        :type: int
        """

        self._today_change = today_change

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

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