# coding: utf-8

"""
    na

    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 GetAnalysisPathReportResponse(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 = {
        'create_time': 'str',
        'path_details': 'str',
        'path_id': 'str',
        'path_report_id': 'str',
        'reachability': 'str',
        'report_details': 'str',
        'status': 'str'
    }

    attribute_map = {
        'create_time': 'CreateTime',
        'path_details': 'PathDetails',
        'path_id': 'PathId',
        'path_report_id': 'PathReportId',
        'reachability': 'Reachability',
        'report_details': 'ReportDetails',
        'status': 'Status'
    }

    def __init__(self, create_time=None, path_details=None, path_id=None, path_report_id=None, reachability=None, report_details=None, status=None, _configuration=None):  # noqa: E501
        """GetAnalysisPathReportResponse - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._create_time = None
        self._path_details = None
        self._path_id = None
        self._path_report_id = None
        self._reachability = None
        self._report_details = None
        self._status = None
        self.discriminator = None

        if create_time is not None:
            self.create_time = create_time
        if path_details is not None:
            self.path_details = path_details
        if path_id is not None:
            self.path_id = path_id
        if path_report_id is not None:
            self.path_report_id = path_report_id
        if reachability is not None:
            self.reachability = reachability
        if report_details is not None:
            self.report_details = report_details
        if status is not None:
            self.status = status

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


        :return: The create_time of this GetAnalysisPathReportResponse.  # noqa: E501
        :rtype: str
        """
        return self._create_time

    @create_time.setter
    def create_time(self, create_time):
        """Sets the create_time of this GetAnalysisPathReportResponse.


        :param create_time: The create_time of this GetAnalysisPathReportResponse.  # noqa: E501
        :type: str
        """

        self._create_time = create_time

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


        :return: The path_details of this GetAnalysisPathReportResponse.  # noqa: E501
        :rtype: str
        """
        return self._path_details

    @path_details.setter
    def path_details(self, path_details):
        """Sets the path_details of this GetAnalysisPathReportResponse.


        :param path_details: The path_details of this GetAnalysisPathReportResponse.  # noqa: E501
        :type: str
        """

        self._path_details = path_details

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


        :return: The path_id of this GetAnalysisPathReportResponse.  # noqa: E501
        :rtype: str
        """
        return self._path_id

    @path_id.setter
    def path_id(self, path_id):
        """Sets the path_id of this GetAnalysisPathReportResponse.


        :param path_id: The path_id of this GetAnalysisPathReportResponse.  # noqa: E501
        :type: str
        """

        self._path_id = path_id

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


        :return: The path_report_id of this GetAnalysisPathReportResponse.  # noqa: E501
        :rtype: str
        """
        return self._path_report_id

    @path_report_id.setter
    def path_report_id(self, path_report_id):
        """Sets the path_report_id of this GetAnalysisPathReportResponse.


        :param path_report_id: The path_report_id of this GetAnalysisPathReportResponse.  # noqa: E501
        :type: str
        """

        self._path_report_id = path_report_id

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


        :return: The reachability of this GetAnalysisPathReportResponse.  # noqa: E501
        :rtype: str
        """
        return self._reachability

    @reachability.setter
    def reachability(self, reachability):
        """Sets the reachability of this GetAnalysisPathReportResponse.


        :param reachability: The reachability of this GetAnalysisPathReportResponse.  # noqa: E501
        :type: str
        """

        self._reachability = reachability

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


        :return: The report_details of this GetAnalysisPathReportResponse.  # noqa: E501
        :rtype: str
        """
        return self._report_details

    @report_details.setter
    def report_details(self, report_details):
        """Sets the report_details of this GetAnalysisPathReportResponse.


        :param report_details: The report_details of this GetAnalysisPathReportResponse.  # noqa: E501
        :type: str
        """

        self._report_details = report_details

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


        :return: The status of this GetAnalysisPathReportResponse.  # noqa: E501
        :rtype: str
        """
        return self._status

    @status.setter
    def status(self, status):
        """Sets the status of this GetAnalysisPathReportResponse.


        :param status: The status of this GetAnalysisPathReportResponse.  # noqa: E501
        :type: str
        """

        self._status = status

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

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