# coding: utf-8

"""
    aidap

    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 DescribeWorkspacesRequest(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 = {
        'filters': 'list[FilterForDescribeWorkspacesInput]',
        'limit': 'int',
        'offset': 'int',
        'project_name': 'str',
        'search': 'str',
        'sort_by': 'str',
        'sort_order': 'str',
        'workspace_tags': 'list[WorkspaceTagForDescribeWorkspacesInput]'
    }

    attribute_map = {
        'filters': 'Filters',
        'limit': 'Limit',
        'offset': 'Offset',
        'project_name': 'ProjectName',
        'search': 'Search',
        'sort_by': 'SortBy',
        'sort_order': 'SortOrder',
        'workspace_tags': 'WorkspaceTags'
    }

    def __init__(self, filters=None, limit=None, offset=None, project_name=None, search=None, sort_by=None, sort_order=None, workspace_tags=None, _configuration=None):  # noqa: E501
        """DescribeWorkspacesRequest - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._filters = None
        self._limit = None
        self._offset = None
        self._project_name = None
        self._search = None
        self._sort_by = None
        self._sort_order = None
        self._workspace_tags = None
        self.discriminator = None

        if filters is not None:
            self.filters = filters
        if limit is not None:
            self.limit = limit
        if offset is not None:
            self.offset = offset
        if project_name is not None:
            self.project_name = project_name
        if search is not None:
            self.search = search
        if sort_by is not None:
            self.sort_by = sort_by
        if sort_order is not None:
            self.sort_order = sort_order
        if workspace_tags is not None:
            self.workspace_tags = workspace_tags

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


        :return: The filters of this DescribeWorkspacesRequest.  # noqa: E501
        :rtype: list[FilterForDescribeWorkspacesInput]
        """
        return self._filters

    @filters.setter
    def filters(self, filters):
        """Sets the filters of this DescribeWorkspacesRequest.


        :param filters: The filters of this DescribeWorkspacesRequest.  # noqa: E501
        :type: list[FilterForDescribeWorkspacesInput]
        """

        self._filters = filters

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


        :return: The limit of this DescribeWorkspacesRequest.  # noqa: E501
        :rtype: int
        """
        return self._limit

    @limit.setter
    def limit(self, limit):
        """Sets the limit of this DescribeWorkspacesRequest.


        :param limit: The limit of this DescribeWorkspacesRequest.  # noqa: E501
        :type: int
        """

        self._limit = limit

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


        :return: The offset of this DescribeWorkspacesRequest.  # noqa: E501
        :rtype: int
        """
        return self._offset

    @offset.setter
    def offset(self, offset):
        """Sets the offset of this DescribeWorkspacesRequest.


        :param offset: The offset of this DescribeWorkspacesRequest.  # noqa: E501
        :type: int
        """

        self._offset = offset

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


        :return: The project_name of this DescribeWorkspacesRequest.  # noqa: E501
        :rtype: str
        """
        return self._project_name

    @project_name.setter
    def project_name(self, project_name):
        """Sets the project_name of this DescribeWorkspacesRequest.


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

        self._project_name = project_name

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


        :return: The search of this DescribeWorkspacesRequest.  # noqa: E501
        :rtype: str
        """
        return self._search

    @search.setter
    def search(self, search):
        """Sets the search of this DescribeWorkspacesRequest.


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

        self._search = search

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


        :return: The sort_by of this DescribeWorkspacesRequest.  # noqa: E501
        :rtype: str
        """
        return self._sort_by

    @sort_by.setter
    def sort_by(self, sort_by):
        """Sets the sort_by of this DescribeWorkspacesRequest.


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

        self._sort_by = sort_by

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


        :return: The sort_order of this DescribeWorkspacesRequest.  # noqa: E501
        :rtype: str
        """
        return self._sort_order

    @sort_order.setter
    def sort_order(self, sort_order):
        """Sets the sort_order of this DescribeWorkspacesRequest.


        :param sort_order: The sort_order of this DescribeWorkspacesRequest.  # noqa: E501
        :type: str
        """
        allowed_values = ["Desc", "Asc"]  # noqa: E501
        if (self._configuration.client_side_validation and
                sort_order not in allowed_values):
            raise ValueError(
                "Invalid value for `sort_order` ({0}), must be one of {1}"  # noqa: E501
                .format(sort_order, allowed_values)
            )

        self._sort_order = sort_order

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


        :return: The workspace_tags of this DescribeWorkspacesRequest.  # noqa: E501
        :rtype: list[WorkspaceTagForDescribeWorkspacesInput]
        """
        return self._workspace_tags

    @workspace_tags.setter
    def workspace_tags(self, workspace_tags):
        """Sets the workspace_tags of this DescribeWorkspacesRequest.


        :param workspace_tags: The workspace_tags of this DescribeWorkspacesRequest.  # noqa: E501
        :type: list[WorkspaceTagForDescribeWorkspacesInput]
        """

        self._workspace_tags = workspace_tags

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

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