# coding: utf-8

"""
    seccenter20240508

    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 ListAgentkitSessionIDsRequest(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 = {
        'protect_status': 'list[str]',
        'session_id': 'str',
        'session_id_list': 'list[str]',
        'session_name': 'str',
        'session_status': 'list[str]',
        'sync_type': 'list[str]',
        'tool_id': 'str',
        'tool_name': 'str',
        'tool_type': 'list[str]'
    }

    attribute_map = {
        'protect_status': 'ProtectStatus',
        'session_id': 'SessionID',
        'session_id_list': 'SessionIDList',
        'session_name': 'SessionName',
        'session_status': 'SessionStatus',
        'sync_type': 'SyncType',
        'tool_id': 'ToolID',
        'tool_name': 'ToolName',
        'tool_type': 'ToolType'
    }

    def __init__(self, protect_status=None, session_id=None, session_id_list=None, session_name=None, session_status=None, sync_type=None, tool_id=None, tool_name=None, tool_type=None, _configuration=None):  # noqa: E501
        """ListAgentkitSessionIDsRequest - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._protect_status = None
        self._session_id = None
        self._session_id_list = None
        self._session_name = None
        self._session_status = None
        self._sync_type = None
        self._tool_id = None
        self._tool_name = None
        self._tool_type = None
        self.discriminator = None

        if protect_status is not None:
            self.protect_status = protect_status
        if session_id is not None:
            self.session_id = session_id
        if session_id_list is not None:
            self.session_id_list = session_id_list
        if session_name is not None:
            self.session_name = session_name
        if session_status is not None:
            self.session_status = session_status
        if sync_type is not None:
            self.sync_type = sync_type
        if tool_id is not None:
            self.tool_id = tool_id
        if tool_name is not None:
            self.tool_name = tool_name
        if tool_type is not None:
            self.tool_type = tool_type

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


        :return: The protect_status of this ListAgentkitSessionIDsRequest.  # noqa: E501
        :rtype: list[str]
        """
        return self._protect_status

    @protect_status.setter
    def protect_status(self, protect_status):
        """Sets the protect_status of this ListAgentkitSessionIDsRequest.


        :param protect_status: The protect_status of this ListAgentkitSessionIDsRequest.  # noqa: E501
        :type: list[str]
        """

        self._protect_status = protect_status

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


        :return: The session_id of this ListAgentkitSessionIDsRequest.  # noqa: E501
        :rtype: str
        """
        return self._session_id

    @session_id.setter
    def session_id(self, session_id):
        """Sets the session_id of this ListAgentkitSessionIDsRequest.


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

        self._session_id = session_id

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


        :return: The session_id_list of this ListAgentkitSessionIDsRequest.  # noqa: E501
        :rtype: list[str]
        """
        return self._session_id_list

    @session_id_list.setter
    def session_id_list(self, session_id_list):
        """Sets the session_id_list of this ListAgentkitSessionIDsRequest.


        :param session_id_list: The session_id_list of this ListAgentkitSessionIDsRequest.  # noqa: E501
        :type: list[str]
        """

        self._session_id_list = session_id_list

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


        :return: The session_name of this ListAgentkitSessionIDsRequest.  # noqa: E501
        :rtype: str
        """
        return self._session_name

    @session_name.setter
    def session_name(self, session_name):
        """Sets the session_name of this ListAgentkitSessionIDsRequest.


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

        self._session_name = session_name

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


        :return: The session_status of this ListAgentkitSessionIDsRequest.  # noqa: E501
        :rtype: list[str]
        """
        return self._session_status

    @session_status.setter
    def session_status(self, session_status):
        """Sets the session_status of this ListAgentkitSessionIDsRequest.


        :param session_status: The session_status of this ListAgentkitSessionIDsRequest.  # noqa: E501
        :type: list[str]
        """

        self._session_status = session_status

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


        :return: The sync_type of this ListAgentkitSessionIDsRequest.  # noqa: E501
        :rtype: list[str]
        """
        return self._sync_type

    @sync_type.setter
    def sync_type(self, sync_type):
        """Sets the sync_type of this ListAgentkitSessionIDsRequest.


        :param sync_type: The sync_type of this ListAgentkitSessionIDsRequest.  # noqa: E501
        :type: list[str]
        """

        self._sync_type = sync_type

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


        :return: The tool_id of this ListAgentkitSessionIDsRequest.  # noqa: E501
        :rtype: str
        """
        return self._tool_id

    @tool_id.setter
    def tool_id(self, tool_id):
        """Sets the tool_id of this ListAgentkitSessionIDsRequest.


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

        self._tool_id = tool_id

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


        :return: The tool_name of this ListAgentkitSessionIDsRequest.  # noqa: E501
        :rtype: str
        """
        return self._tool_name

    @tool_name.setter
    def tool_name(self, tool_name):
        """Sets the tool_name of this ListAgentkitSessionIDsRequest.


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

        self._tool_name = tool_name

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


        :return: The tool_type of this ListAgentkitSessionIDsRequest.  # noqa: E501
        :rtype: list[str]
        """
        return self._tool_type

    @tool_type.setter
    def tool_type(self, tool_type):
        """Sets the tool_type of this ListAgentkitSessionIDsRequest.


        :param tool_type: The tool_type of this ListAgentkitSessionIDsRequest.  # noqa: E501
        :type: list[str]
        """

        self._tool_type = tool_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(ListAgentkitSessionIDsRequest, 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, ListAgentkitSessionIDsRequest):
            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, ListAgentkitSessionIDsRequest):
            return True

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