# coding: utf-8

"""
    llmscan

    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 CreateEvaluationByIDRequest(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 = {
        'asset_id': 'str',
        'asset_type': 'str',
        'concurrency': 'int',
        'description': 'str',
        'max_round': 'int',
        'question_bank_ids': 'list[str]',
        'task_name': 'str',
        'task_type': 'str'
    }

    attribute_map = {
        'asset_id': 'AssetID',
        'asset_type': 'AssetType',
        'concurrency': 'Concurrency',
        'description': 'Description',
        'max_round': 'MaxRound',
        'question_bank_ids': 'QuestionBankIDs',
        'task_name': 'TaskName',
        'task_type': 'TaskType'
    }

    def __init__(self, asset_id=None, asset_type=None, concurrency=None, description=None, max_round=None, question_bank_ids=None, task_name=None, task_type=None, _configuration=None):  # noqa: E501
        """CreateEvaluationByIDRequest - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._asset_id = None
        self._asset_type = None
        self._concurrency = None
        self._description = None
        self._max_round = None
        self._question_bank_ids = None
        self._task_name = None
        self._task_type = None
        self.discriminator = None

        if asset_id is not None:
            self.asset_id = asset_id
        if asset_type is not None:
            self.asset_type = asset_type
        if concurrency is not None:
            self.concurrency = concurrency
        if description is not None:
            self.description = description
        if max_round is not None:
            self.max_round = max_round
        if question_bank_ids is not None:
            self.question_bank_ids = question_bank_ids
        if task_name is not None:
            self.task_name = task_name
        if task_type is not None:
            self.task_type = task_type

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


        :return: The asset_id of this CreateEvaluationByIDRequest.  # noqa: E501
        :rtype: str
        """
        return self._asset_id

    @asset_id.setter
    def asset_id(self, asset_id):
        """Sets the asset_id of this CreateEvaluationByIDRequest.


        :param asset_id: The asset_id of this CreateEvaluationByIDRequest.  # noqa: E501
        :type: str
        """

        self._asset_id = asset_id

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


        :return: The asset_type of this CreateEvaluationByIDRequest.  # noqa: E501
        :rtype: str
        """
        return self._asset_type

    @asset_type.setter
    def asset_type(self, asset_type):
        """Sets the asset_type of this CreateEvaluationByIDRequest.


        :param asset_type: The asset_type of this CreateEvaluationByIDRequest.  # noqa: E501
        :type: str
        """

        self._asset_type = asset_type

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


        :return: The concurrency of this CreateEvaluationByIDRequest.  # noqa: E501
        :rtype: int
        """
        return self._concurrency

    @concurrency.setter
    def concurrency(self, concurrency):
        """Sets the concurrency of this CreateEvaluationByIDRequest.


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

        self._concurrency = concurrency

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


        :return: The description of this CreateEvaluationByIDRequest.  # noqa: E501
        :rtype: str
        """
        return self._description

    @description.setter
    def description(self, description):
        """Sets the description of this CreateEvaluationByIDRequest.


        :param description: The description of this CreateEvaluationByIDRequest.  # noqa: E501
        :type: str
        """

        self._description = description

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


        :return: The max_round of this CreateEvaluationByIDRequest.  # noqa: E501
        :rtype: int
        """
        return self._max_round

    @max_round.setter
    def max_round(self, max_round):
        """Sets the max_round of this CreateEvaluationByIDRequest.


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

        self._max_round = max_round

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


        :return: The question_bank_ids of this CreateEvaluationByIDRequest.  # noqa: E501
        :rtype: list[str]
        """
        return self._question_bank_ids

    @question_bank_ids.setter
    def question_bank_ids(self, question_bank_ids):
        """Sets the question_bank_ids of this CreateEvaluationByIDRequest.


        :param question_bank_ids: The question_bank_ids of this CreateEvaluationByIDRequest.  # noqa: E501
        :type: list[str]
        """

        self._question_bank_ids = question_bank_ids

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


        :return: The task_name of this CreateEvaluationByIDRequest.  # noqa: E501
        :rtype: str
        """
        return self._task_name

    @task_name.setter
    def task_name(self, task_name):
        """Sets the task_name of this CreateEvaluationByIDRequest.


        :param task_name: The task_name of this CreateEvaluationByIDRequest.  # noqa: E501
        :type: str
        """

        self._task_name = task_name

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


        :return: The task_type of this CreateEvaluationByIDRequest.  # noqa: E501
        :rtype: str
        """
        return self._task_type

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


        :param task_type: The task_type of this CreateEvaluationByIDRequest.  # noqa: E501
        :type: str
        """

        self._task_type = task_type

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

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