# coding: utf-8

"""
    acep

    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 GetTaskInfoResponse(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 = {
        'jobs': 'list[JobForGetTaskInfoOutput]',
        'task_action': 'str',
        'task_id': 'str',
        'task_message': 'str',
        'task_result': 'int'
    }

    attribute_map = {
        'jobs': 'Jobs',
        'task_action': 'TaskAction',
        'task_id': 'TaskId',
        'task_message': 'TaskMessage',
        'task_result': 'TaskResult'
    }

    def __init__(self, jobs=None, task_action=None, task_id=None, task_message=None, task_result=None, _configuration=None):  # noqa: E501
        """GetTaskInfoResponse - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._jobs = None
        self._task_action = None
        self._task_id = None
        self._task_message = None
        self._task_result = None
        self.discriminator = None

        if jobs is not None:
            self.jobs = jobs
        if task_action is not None:
            self.task_action = task_action
        if task_id is not None:
            self.task_id = task_id
        if task_message is not None:
            self.task_message = task_message
        if task_result is not None:
            self.task_result = task_result

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


        :return: The jobs of this GetTaskInfoResponse.  # noqa: E501
        :rtype: list[JobForGetTaskInfoOutput]
        """
        return self._jobs

    @jobs.setter
    def jobs(self, jobs):
        """Sets the jobs of this GetTaskInfoResponse.


        :param jobs: The jobs of this GetTaskInfoResponse.  # noqa: E501
        :type: list[JobForGetTaskInfoOutput]
        """

        self._jobs = jobs

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


        :return: The task_action of this GetTaskInfoResponse.  # noqa: E501
        :rtype: str
        """
        return self._task_action

    @task_action.setter
    def task_action(self, task_action):
        """Sets the task_action of this GetTaskInfoResponse.


        :param task_action: The task_action of this GetTaskInfoResponse.  # noqa: E501
        :type: str
        """

        self._task_action = task_action

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


        :return: The task_id of this GetTaskInfoResponse.  # noqa: E501
        :rtype: str
        """
        return self._task_id

    @task_id.setter
    def task_id(self, task_id):
        """Sets the task_id of this GetTaskInfoResponse.


        :param task_id: The task_id of this GetTaskInfoResponse.  # noqa: E501
        :type: str
        """

        self._task_id = task_id

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


        :return: The task_message of this GetTaskInfoResponse.  # noqa: E501
        :rtype: str
        """
        return self._task_message

    @task_message.setter
    def task_message(self, task_message):
        """Sets the task_message of this GetTaskInfoResponse.


        :param task_message: The task_message of this GetTaskInfoResponse.  # noqa: E501
        :type: str
        """

        self._task_message = task_message

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


        :return: The task_result of this GetTaskInfoResponse.  # noqa: E501
        :rtype: int
        """
        return self._task_result

    @task_result.setter
    def task_result(self, task_result):
        """Sets the task_result of this GetTaskInfoResponse.


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

        self._task_result = task_result

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

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