# 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 DataForGetAgentDetailOutput(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',
        'base_url': 'str',
        'connect_log_id': 'int',
        'connect_status': 'str',
        'create_time': 'int',
        'curl': 'str',
        'id': 'int',
        'name': 'str',
        'param': 'str',
        'platform': 'str',
        'uuid': 'str',
        'update_time': 'int',
        'user_id': 'str'
    }

    attribute_map = {
        'api_key': 'ApiKey',
        'base_url': 'BaseUrl',
        'connect_log_id': 'ConnectLogID',
        'connect_status': 'ConnectStatus',
        'create_time': 'CreateTime',
        'curl': 'Curl',
        'id': 'ID',
        'name': 'Name',
        'param': 'Param',
        'platform': 'Platform',
        'uuid': 'UUID',
        'update_time': 'UpdateTime',
        'user_id': 'UserID'
    }

    def __init__(self, api_key=None, base_url=None, connect_log_id=None, connect_status=None, create_time=None, curl=None, id=None, name=None, param=None, platform=None, uuid=None, update_time=None, user_id=None, _configuration=None):  # noqa: E501
        """DataForGetAgentDetailOutput - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._api_key = None
        self._base_url = None
        self._connect_log_id = None
        self._connect_status = None
        self._create_time = None
        self._curl = None
        self._id = None
        self._name = None
        self._param = None
        self._platform = None
        self._uuid = None
        self._update_time = None
        self._user_id = None
        self.discriminator = None

        if api_key is not None:
            self.api_key = api_key
        if base_url is not None:
            self.base_url = base_url
        if connect_log_id is not None:
            self.connect_log_id = connect_log_id
        if connect_status is not None:
            self.connect_status = connect_status
        if create_time is not None:
            self.create_time = create_time
        if curl is not None:
            self.curl = curl
        if id is not None:
            self.id = id
        if name is not None:
            self.name = name
        if param is not None:
            self.param = param
        if platform is not None:
            self.platform = platform
        if uuid is not None:
            self.uuid = uuid
        if update_time is not None:
            self.update_time = update_time
        if user_id is not None:
            self.user_id = user_id

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


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

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


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

        self._api_key = api_key

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


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

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


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

        self._base_url = base_url

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


        :return: The connect_log_id of this DataForGetAgentDetailOutput.  # noqa: E501
        :rtype: int
        """
        return self._connect_log_id

    @connect_log_id.setter
    def connect_log_id(self, connect_log_id):
        """Sets the connect_log_id of this DataForGetAgentDetailOutput.


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

        self._connect_log_id = connect_log_id

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


        :return: The connect_status of this DataForGetAgentDetailOutput.  # noqa: E501
        :rtype: str
        """
        return self._connect_status

    @connect_status.setter
    def connect_status(self, connect_status):
        """Sets the connect_status of this DataForGetAgentDetailOutput.


        :param connect_status: The connect_status of this DataForGetAgentDetailOutput.  # noqa: E501
        :type: str
        """

        self._connect_status = connect_status

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


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

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


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

        self._create_time = create_time

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


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

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


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

        self._curl = curl

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


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

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


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

        self._id = id

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


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

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


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

        self._name = name

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


        :return: The param of this DataForGetAgentDetailOutput.  # noqa: E501
        :rtype: str
        """
        return self._param

    @param.setter
    def param(self, param):
        """Sets the param of this DataForGetAgentDetailOutput.


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

        self._param = param

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


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

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


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

        self._platform = platform

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


        :return: The uuid of this DataForGetAgentDetailOutput.  # noqa: E501
        :rtype: str
        """
        return self._uuid

    @uuid.setter
    def uuid(self, uuid):
        """Sets the uuid of this DataForGetAgentDetailOutput.


        :param uuid: The uuid of this DataForGetAgentDetailOutput.  # noqa: E501
        :type: str
        """

        self._uuid = uuid

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


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

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


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

        self._update_time = update_time

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


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

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


        :param user_id: The user_id of this DataForGetAgentDetailOutput.  # 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(DataForGetAgentDetailOutput, 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, DataForGetAgentDetailOutput):
            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, DataForGetAgentDetailOutput):
            return True

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