# 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 CreateEvaluationByInfoRequest(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 = {
        'api_key': 'str',
        'asset_id': 'str',
        'base_url': 'str',
        'curl': 'str',
        'endpoint_id': 'str',
        'name': 'str',
        'params': 'str',
        'platform': 'str',
        'type': 'str',
        'user_id': 'str'
    }

    attribute_map = {
        'api_key': 'APIKey',
        'asset_id': 'AssetID',
        'base_url': 'BaseURL',
        'curl': 'Curl',
        'endpoint_id': 'EndpointID',
        'name': 'Name',
        'params': 'Params',
        'platform': 'Platform',
        'type': 'Type',
        'user_id': 'UserID'
    }

    def __init__(self, api_key=None, asset_id=None, base_url=None, curl=None, endpoint_id=None, name=None, params=None, platform=None, type=None, user_id=None, _configuration=None):  # noqa: E501
        """CreateEvaluationByInfoRequest - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._api_key = None
        self._asset_id = None
        self._base_url = None
        self._curl = None
        self._endpoint_id = None
        self._name = None
        self._params = None
        self._platform = None
        self._type = None
        self._user_id = None
        self.discriminator = None

        if api_key is not None:
            self.api_key = api_key
        if asset_id is not None:
            self.asset_id = asset_id
        if base_url is not None:
            self.base_url = base_url
        if curl is not None:
            self.curl = curl
        if endpoint_id is not None:
            self.endpoint_id = endpoint_id
        if name is not None:
            self.name = name
        if params is not None:
            self.params = params
        if platform is not None:
            self.platform = platform
        self.type = type
        if user_id is not None:
            self.user_id = user_id

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


        :return: The api_key of this CreateEvaluationByInfoRequest.  # noqa: E501
        :rtype: str
        """
        return self._api_key

    @api_key.setter
    def api_key(self, api_key):
        """Sets the api_key of this CreateEvaluationByInfoRequest.


        :param api_key: The api_key of this CreateEvaluationByInfoRequest.  # noqa: E501
        :type: str
        """

        self._api_key = api_key

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


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

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


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

        self._asset_id = asset_id

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


        :return: The base_url of this CreateEvaluationByInfoRequest.  # noqa: E501
        :rtype: str
        """
        return self._base_url

    @base_url.setter
    def base_url(self, base_url):
        """Sets the base_url of this CreateEvaluationByInfoRequest.


        :param base_url: The base_url of this CreateEvaluationByInfoRequest.  # noqa: E501
        :type: str
        """

        self._base_url = base_url

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


        :return: The curl of this CreateEvaluationByInfoRequest.  # noqa: E501
        :rtype: str
        """
        return self._curl

    @curl.setter
    def curl(self, curl):
        """Sets the curl of this CreateEvaluationByInfoRequest.


        :param curl: The curl of this CreateEvaluationByInfoRequest.  # noqa: E501
        :type: str
        """

        self._curl = curl

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


        :return: The endpoint_id of this CreateEvaluationByInfoRequest.  # noqa: E501
        :rtype: str
        """
        return self._endpoint_id

    @endpoint_id.setter
    def endpoint_id(self, endpoint_id):
        """Sets the endpoint_id of this CreateEvaluationByInfoRequest.


        :param endpoint_id: The endpoint_id of this CreateEvaluationByInfoRequest.  # noqa: E501
        :type: str
        """

        self._endpoint_id = endpoint_id

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


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

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


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

        self._name = name

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


        :return: The params of this CreateEvaluationByInfoRequest.  # noqa: E501
        :rtype: str
        """
        return self._params

    @params.setter
    def params(self, params):
        """Sets the params of this CreateEvaluationByInfoRequest.


        :param params: The params of this CreateEvaluationByInfoRequest.  # noqa: E501
        :type: str
        """

        self._params = params

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


        :return: The platform of this CreateEvaluationByInfoRequest.  # noqa: E501
        :rtype: str
        """
        return self._platform

    @platform.setter
    def platform(self, platform):
        """Sets the platform of this CreateEvaluationByInfoRequest.


        :param platform: The platform of this CreateEvaluationByInfoRequest.  # noqa: E501
        :type: str
        """

        self._platform = platform

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


        :return: The type of this CreateEvaluationByInfoRequest.  # noqa: E501
        :rtype: str
        """
        return self._type

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


        :param type: The type of this CreateEvaluationByInfoRequest.  # noqa: E501
        :type: str
        """
        if self._configuration.client_side_validation and type is None:
            raise ValueError("Invalid value for `type`, must not be `None`")  # noqa: E501

        self._type = type

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


        :return: The user_id of this CreateEvaluationByInfoRequest.  # noqa: E501
        :rtype: str
        """
        return self._user_id

    @user_id.setter
    def user_id(self, user_id):
        """Sets the user_id of this CreateEvaluationByInfoRequest.


        :param user_id: The user_id of this CreateEvaluationByInfoRequest.  # noqa: E501
        :type: str
        """

        self._user_id = user_id

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

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