# coding: utf-8

"""
    cloud_detect20251031

    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 TaskForGetTaskOutput(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 = {
        'address': 'str',
        'alarm_id_list': 'list[int]',
        'alarm_list': 'list[AlarmListForGetTaskOutput]',
        'create_time': 'int',
        'create_time_str': 'str',
        'diagnose_config': 'DiagnoseConfigForGetTaskOutput',
        'dns_hijack_config': 'DnsHijackConfigForGetTaskOutput',
        'download_config': 'DownloadConfigForGetTaskOutput',
        'enable_shuffle': 'bool',
        'finish_time': 'int',
        'http_method': 'int',
        'id': 'int',
        'id_str': 'str',
        'interval_seconds': 'int',
        'line_id_list': 'list[int]',
        'name': 'str',
        'owner': 'str',
        'page_config': 'PageConfigForGetTaskOutput',
        'period_config': 'PeriodConfigForGetTaskOutput',
        'ping_config': 'PingConfigForGetTaskOutput',
        'project_name': 'str',
        'result_assert': 'ResultAssertForGetTaskOutput',
        'status': 'int',
        'sub_task_type': 'int',
        'tags': 'list[TagForGetTaskOutput]',
        'target_server_type': 'int',
        'task_group_id': 'int',
        'task_group_name': 'str',
        'task_type': 'int',
        'type': 'int',
        'update_time': 'int',
        'upload_config': 'UploadConfigForGetTaskOutput'
    }

    attribute_map = {
        'address': 'Address',
        'alarm_id_list': 'AlarmIdList',
        'alarm_list': 'AlarmList',
        'create_time': 'CreateTime',
        'create_time_str': 'CreateTimeStr',
        'diagnose_config': 'DiagnoseConfig',
        'dns_hijack_config': 'DnsHijackConfig',
        'download_config': 'DownloadConfig',
        'enable_shuffle': 'EnableShuffle',
        'finish_time': 'FinishTime',
        'http_method': 'HttpMethod',
        'id': 'Id',
        'id_str': 'IdStr',
        'interval_seconds': 'IntervalSeconds',
        'line_id_list': 'LineIdList',
        'name': 'Name',
        'owner': 'Owner',
        'page_config': 'PageConfig',
        'period_config': 'PeriodConfig',
        'ping_config': 'PingConfig',
        'project_name': 'ProjectName',
        'result_assert': 'ResultAssert',
        'status': 'Status',
        'sub_task_type': 'SubTaskType',
        'tags': 'Tags',
        'target_server_type': 'TargetServerType',
        'task_group_id': 'TaskGroupId',
        'task_group_name': 'TaskGroupName',
        'task_type': 'TaskType',
        'type': 'Type',
        'update_time': 'UpdateTime',
        'upload_config': 'UploadConfig'
    }

    def __init__(self, address=None, alarm_id_list=None, alarm_list=None, create_time=None, create_time_str=None, diagnose_config=None, dns_hijack_config=None, download_config=None, enable_shuffle=None, finish_time=None, http_method=None, id=None, id_str=None, interval_seconds=None, line_id_list=None, name=None, owner=None, page_config=None, period_config=None, ping_config=None, project_name=None, result_assert=None, status=None, sub_task_type=None, tags=None, target_server_type=None, task_group_id=None, task_group_name=None, task_type=None, type=None, update_time=None, upload_config=None, _configuration=None):  # noqa: E501
        """TaskForGetTaskOutput - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._address = None
        self._alarm_id_list = None
        self._alarm_list = None
        self._create_time = None
        self._create_time_str = None
        self._diagnose_config = None
        self._dns_hijack_config = None
        self._download_config = None
        self._enable_shuffle = None
        self._finish_time = None
        self._http_method = None
        self._id = None
        self._id_str = None
        self._interval_seconds = None
        self._line_id_list = None
        self._name = None
        self._owner = None
        self._page_config = None
        self._period_config = None
        self._ping_config = None
        self._project_name = None
        self._result_assert = None
        self._status = None
        self._sub_task_type = None
        self._tags = None
        self._target_server_type = None
        self._task_group_id = None
        self._task_group_name = None
        self._task_type = None
        self._type = None
        self._update_time = None
        self._upload_config = None
        self.discriminator = None

        if address is not None:
            self.address = address
        if alarm_id_list is not None:
            self.alarm_id_list = alarm_id_list
        if alarm_list is not None:
            self.alarm_list = alarm_list
        if create_time is not None:
            self.create_time = create_time
        if create_time_str is not None:
            self.create_time_str = create_time_str
        if diagnose_config is not None:
            self.diagnose_config = diagnose_config
        if dns_hijack_config is not None:
            self.dns_hijack_config = dns_hijack_config
        if download_config is not None:
            self.download_config = download_config
        if enable_shuffle is not None:
            self.enable_shuffle = enable_shuffle
        if finish_time is not None:
            self.finish_time = finish_time
        if http_method is not None:
            self.http_method = http_method
        if id is not None:
            self.id = id
        if id_str is not None:
            self.id_str = id_str
        if interval_seconds is not None:
            self.interval_seconds = interval_seconds
        if line_id_list is not None:
            self.line_id_list = line_id_list
        if name is not None:
            self.name = name
        if owner is not None:
            self.owner = owner
        if page_config is not None:
            self.page_config = page_config
        if period_config is not None:
            self.period_config = period_config
        if ping_config is not None:
            self.ping_config = ping_config
        if project_name is not None:
            self.project_name = project_name
        if result_assert is not None:
            self.result_assert = result_assert
        if status is not None:
            self.status = status
        if sub_task_type is not None:
            self.sub_task_type = sub_task_type
        if tags is not None:
            self.tags = tags
        if target_server_type is not None:
            self.target_server_type = target_server_type
        if task_group_id is not None:
            self.task_group_id = task_group_id
        if task_group_name is not None:
            self.task_group_name = task_group_name
        if task_type is not None:
            self.task_type = task_type
        if type is not None:
            self.type = type
        if update_time is not None:
            self.update_time = update_time
        if upload_config is not None:
            self.upload_config = upload_config

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


        :return: The address of this TaskForGetTaskOutput.  # noqa: E501
        :rtype: str
        """
        return self._address

    @address.setter
    def address(self, address):
        """Sets the address of this TaskForGetTaskOutput.


        :param address: The address of this TaskForGetTaskOutput.  # noqa: E501
        :type: str
        """

        self._address = address

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


        :return: The alarm_id_list of this TaskForGetTaskOutput.  # noqa: E501
        :rtype: list[int]
        """
        return self._alarm_id_list

    @alarm_id_list.setter
    def alarm_id_list(self, alarm_id_list):
        """Sets the alarm_id_list of this TaskForGetTaskOutput.


        :param alarm_id_list: The alarm_id_list of this TaskForGetTaskOutput.  # noqa: E501
        :type: list[int]
        """

        self._alarm_id_list = alarm_id_list

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


        :return: The alarm_list of this TaskForGetTaskOutput.  # noqa: E501
        :rtype: list[AlarmListForGetTaskOutput]
        """
        return self._alarm_list

    @alarm_list.setter
    def alarm_list(self, alarm_list):
        """Sets the alarm_list of this TaskForGetTaskOutput.


        :param alarm_list: The alarm_list of this TaskForGetTaskOutput.  # noqa: E501
        :type: list[AlarmListForGetTaskOutput]
        """

        self._alarm_list = alarm_list

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


        :return: The create_time of this TaskForGetTaskOutput.  # noqa: E501
        :rtype: int
        """
        return self._create_time

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


        :param create_time: The create_time of this TaskForGetTaskOutput.  # noqa: E501
        :type: int
        """

        self._create_time = create_time

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


        :return: The create_time_str of this TaskForGetTaskOutput.  # noqa: E501
        :rtype: str
        """
        return self._create_time_str

    @create_time_str.setter
    def create_time_str(self, create_time_str):
        """Sets the create_time_str of this TaskForGetTaskOutput.


        :param create_time_str: The create_time_str of this TaskForGetTaskOutput.  # noqa: E501
        :type: str
        """

        self._create_time_str = create_time_str

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


        :return: The diagnose_config of this TaskForGetTaskOutput.  # noqa: E501
        :rtype: DiagnoseConfigForGetTaskOutput
        """
        return self._diagnose_config

    @diagnose_config.setter
    def diagnose_config(self, diagnose_config):
        """Sets the diagnose_config of this TaskForGetTaskOutput.


        :param diagnose_config: The diagnose_config of this TaskForGetTaskOutput.  # noqa: E501
        :type: DiagnoseConfigForGetTaskOutput
        """

        self._diagnose_config = diagnose_config

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


        :return: The dns_hijack_config of this TaskForGetTaskOutput.  # noqa: E501
        :rtype: DnsHijackConfigForGetTaskOutput
        """
        return self._dns_hijack_config

    @dns_hijack_config.setter
    def dns_hijack_config(self, dns_hijack_config):
        """Sets the dns_hijack_config of this TaskForGetTaskOutput.


        :param dns_hijack_config: The dns_hijack_config of this TaskForGetTaskOutput.  # noqa: E501
        :type: DnsHijackConfigForGetTaskOutput
        """

        self._dns_hijack_config = dns_hijack_config

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


        :return: The download_config of this TaskForGetTaskOutput.  # noqa: E501
        :rtype: DownloadConfigForGetTaskOutput
        """
        return self._download_config

    @download_config.setter
    def download_config(self, download_config):
        """Sets the download_config of this TaskForGetTaskOutput.


        :param download_config: The download_config of this TaskForGetTaskOutput.  # noqa: E501
        :type: DownloadConfigForGetTaskOutput
        """

        self._download_config = download_config

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


        :return: The enable_shuffle of this TaskForGetTaskOutput.  # noqa: E501
        :rtype: bool
        """
        return self._enable_shuffle

    @enable_shuffle.setter
    def enable_shuffle(self, enable_shuffle):
        """Sets the enable_shuffle of this TaskForGetTaskOutput.


        :param enable_shuffle: The enable_shuffle of this TaskForGetTaskOutput.  # noqa: E501
        :type: bool
        """

        self._enable_shuffle = enable_shuffle

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


        :return: The finish_time of this TaskForGetTaskOutput.  # noqa: E501
        :rtype: int
        """
        return self._finish_time

    @finish_time.setter
    def finish_time(self, finish_time):
        """Sets the finish_time of this TaskForGetTaskOutput.


        :param finish_time: The finish_time of this TaskForGetTaskOutput.  # noqa: E501
        :type: int
        """

        self._finish_time = finish_time

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


        :return: The http_method of this TaskForGetTaskOutput.  # noqa: E501
        :rtype: int
        """
        return self._http_method

    @http_method.setter
    def http_method(self, http_method):
        """Sets the http_method of this TaskForGetTaskOutput.


        :param http_method: The http_method of this TaskForGetTaskOutput.  # noqa: E501
        :type: int
        """

        self._http_method = http_method

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


        :return: The id of this TaskForGetTaskOutput.  # noqa: E501
        :rtype: int
        """
        return self._id

    @id.setter
    def id(self, id):
        """Sets the id of this TaskForGetTaskOutput.


        :param id: The id of this TaskForGetTaskOutput.  # noqa: E501
        :type: int
        """

        self._id = id

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


        :return: The id_str of this TaskForGetTaskOutput.  # noqa: E501
        :rtype: str
        """
        return self._id_str

    @id_str.setter
    def id_str(self, id_str):
        """Sets the id_str of this TaskForGetTaskOutput.


        :param id_str: The id_str of this TaskForGetTaskOutput.  # noqa: E501
        :type: str
        """

        self._id_str = id_str

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


        :return: The interval_seconds of this TaskForGetTaskOutput.  # noqa: E501
        :rtype: int
        """
        return self._interval_seconds

    @interval_seconds.setter
    def interval_seconds(self, interval_seconds):
        """Sets the interval_seconds of this TaskForGetTaskOutput.


        :param interval_seconds: The interval_seconds of this TaskForGetTaskOutput.  # noqa: E501
        :type: int
        """

        self._interval_seconds = interval_seconds

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


        :return: The line_id_list of this TaskForGetTaskOutput.  # noqa: E501
        :rtype: list[int]
        """
        return self._line_id_list

    @line_id_list.setter
    def line_id_list(self, line_id_list):
        """Sets the line_id_list of this TaskForGetTaskOutput.


        :param line_id_list: The line_id_list of this TaskForGetTaskOutput.  # noqa: E501
        :type: list[int]
        """

        self._line_id_list = line_id_list

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


        :return: The name of this TaskForGetTaskOutput.  # noqa: E501
        :rtype: str
        """
        return self._name

    @name.setter
    def name(self, name):
        """Sets the name of this TaskForGetTaskOutput.


        :param name: The name of this TaskForGetTaskOutput.  # noqa: E501
        :type: str
        """

        self._name = name

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


        :return: The owner of this TaskForGetTaskOutput.  # noqa: E501
        :rtype: str
        """
        return self._owner

    @owner.setter
    def owner(self, owner):
        """Sets the owner of this TaskForGetTaskOutput.


        :param owner: The owner of this TaskForGetTaskOutput.  # noqa: E501
        :type: str
        """

        self._owner = owner

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


        :return: The page_config of this TaskForGetTaskOutput.  # noqa: E501
        :rtype: PageConfigForGetTaskOutput
        """
        return self._page_config

    @page_config.setter
    def page_config(self, page_config):
        """Sets the page_config of this TaskForGetTaskOutput.


        :param page_config: The page_config of this TaskForGetTaskOutput.  # noqa: E501
        :type: PageConfigForGetTaskOutput
        """

        self._page_config = page_config

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


        :return: The period_config of this TaskForGetTaskOutput.  # noqa: E501
        :rtype: PeriodConfigForGetTaskOutput
        """
        return self._period_config

    @period_config.setter
    def period_config(self, period_config):
        """Sets the period_config of this TaskForGetTaskOutput.


        :param period_config: The period_config of this TaskForGetTaskOutput.  # noqa: E501
        :type: PeriodConfigForGetTaskOutput
        """

        self._period_config = period_config

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


        :return: The ping_config of this TaskForGetTaskOutput.  # noqa: E501
        :rtype: PingConfigForGetTaskOutput
        """
        return self._ping_config

    @ping_config.setter
    def ping_config(self, ping_config):
        """Sets the ping_config of this TaskForGetTaskOutput.


        :param ping_config: The ping_config of this TaskForGetTaskOutput.  # noqa: E501
        :type: PingConfigForGetTaskOutput
        """

        self._ping_config = ping_config

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


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

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


        :param project_name: The project_name of this TaskForGetTaskOutput.  # noqa: E501
        :type: str
        """

        self._project_name = project_name

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


        :return: The result_assert of this TaskForGetTaskOutput.  # noqa: E501
        :rtype: ResultAssertForGetTaskOutput
        """
        return self._result_assert

    @result_assert.setter
    def result_assert(self, result_assert):
        """Sets the result_assert of this TaskForGetTaskOutput.


        :param result_assert: The result_assert of this TaskForGetTaskOutput.  # noqa: E501
        :type: ResultAssertForGetTaskOutput
        """

        self._result_assert = result_assert

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


        :return: The status of this TaskForGetTaskOutput.  # noqa: E501
        :rtype: int
        """
        return self._status

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


        :param status: The status of this TaskForGetTaskOutput.  # noqa: E501
        :type: int
        """

        self._status = status

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


        :return: The sub_task_type of this TaskForGetTaskOutput.  # noqa: E501
        :rtype: int
        """
        return self._sub_task_type

    @sub_task_type.setter
    def sub_task_type(self, sub_task_type):
        """Sets the sub_task_type of this TaskForGetTaskOutput.


        :param sub_task_type: The sub_task_type of this TaskForGetTaskOutput.  # noqa: E501
        :type: int
        """

        self._sub_task_type = sub_task_type

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


        :return: The tags of this TaskForGetTaskOutput.  # noqa: E501
        :rtype: list[TagForGetTaskOutput]
        """
        return self._tags

    @tags.setter
    def tags(self, tags):
        """Sets the tags of this TaskForGetTaskOutput.


        :param tags: The tags of this TaskForGetTaskOutput.  # noqa: E501
        :type: list[TagForGetTaskOutput]
        """

        self._tags = tags

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


        :return: The target_server_type of this TaskForGetTaskOutput.  # noqa: E501
        :rtype: int
        """
        return self._target_server_type

    @target_server_type.setter
    def target_server_type(self, target_server_type):
        """Sets the target_server_type of this TaskForGetTaskOutput.


        :param target_server_type: The target_server_type of this TaskForGetTaskOutput.  # noqa: E501
        :type: int
        """

        self._target_server_type = target_server_type

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


        :return: The task_group_id of this TaskForGetTaskOutput.  # noqa: E501
        :rtype: int
        """
        return self._task_group_id

    @task_group_id.setter
    def task_group_id(self, task_group_id):
        """Sets the task_group_id of this TaskForGetTaskOutput.


        :param task_group_id: The task_group_id of this TaskForGetTaskOutput.  # noqa: E501
        :type: int
        """

        self._task_group_id = task_group_id

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


        :return: The task_group_name of this TaskForGetTaskOutput.  # noqa: E501
        :rtype: str
        """
        return self._task_group_name

    @task_group_name.setter
    def task_group_name(self, task_group_name):
        """Sets the task_group_name of this TaskForGetTaskOutput.


        :param task_group_name: The task_group_name of this TaskForGetTaskOutput.  # noqa: E501
        :type: str
        """

        self._task_group_name = task_group_name

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


        :return: The task_type of this TaskForGetTaskOutput.  # noqa: E501
        :rtype: int
        """
        return self._task_type

    @task_type.setter
    def task_type(self, task_type):
        """Sets the task_type of this TaskForGetTaskOutput.


        :param task_type: The task_type of this TaskForGetTaskOutput.  # noqa: E501
        :type: int
        """

        self._task_type = task_type

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


        :return: The type of this TaskForGetTaskOutput.  # noqa: E501
        :rtype: int
        """
        return self._type

    @type.setter
    def type(self, type):
        """Sets the type of this TaskForGetTaskOutput.


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

        self._type = type

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


        :return: The update_time of this TaskForGetTaskOutput.  # noqa: E501
        :rtype: int
        """
        return self._update_time

    @update_time.setter
    def update_time(self, update_time):
        """Sets the update_time of this TaskForGetTaskOutput.


        :param update_time: The update_time of this TaskForGetTaskOutput.  # noqa: E501
        :type: int
        """

        self._update_time = update_time

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


        :return: The upload_config of this TaskForGetTaskOutput.  # noqa: E501
        :rtype: UploadConfigForGetTaskOutput
        """
        return self._upload_config

    @upload_config.setter
    def upload_config(self, upload_config):
        """Sets the upload_config of this TaskForGetTaskOutput.


        :param upload_config: The upload_config of this TaskForGetTaskOutput.  # noqa: E501
        :type: UploadConfigForGetTaskOutput
        """

        self._upload_config = upload_config

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

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