# coding: utf-8

"""
    id

    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 ListServicesRequest(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 = {
        'backend_type': 'str',
        'keyword': 'str',
        'page_number': 'int',
        'page_size': 'int',
        'permission_space_id': 'str',
        'project_name': 'str',
        'sort_by': 'str',
        'sort_order': 'str',
        'status': 'str',
        'tag_filters': 'list[TagFilterForListServicesInput]',
        'tag_ids': 'list[str]',
        'template_keyword': 'str'
    }

    attribute_map = {
        'backend_type': 'BackendType',
        'keyword': 'Keyword',
        'page_number': 'PageNumber',
        'page_size': 'PageSize',
        'permission_space_id': 'PermissionSpaceId',
        'project_name': 'ProjectName',
        'sort_by': 'SortBy',
        'sort_order': 'SortOrder',
        'status': 'Status',
        'tag_filters': 'TagFilters',
        'tag_ids': 'TagIds',
        'template_keyword': 'TemplateKeyword'
    }

    def __init__(self, backend_type=None, keyword=None, page_number=None, page_size=None, permission_space_id=None, project_name=None, sort_by=None, sort_order=None, status=None, tag_filters=None, tag_ids=None, template_keyword=None, _configuration=None):  # noqa: E501
        """ListServicesRequest - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._backend_type = None
        self._keyword = None
        self._page_number = None
        self._page_size = None
        self._permission_space_id = None
        self._project_name = None
        self._sort_by = None
        self._sort_order = None
        self._status = None
        self._tag_filters = None
        self._tag_ids = None
        self._template_keyword = None
        self.discriminator = None

        if backend_type is not None:
            self.backend_type = backend_type
        if keyword is not None:
            self.keyword = keyword
        if page_number is not None:
            self.page_number = page_number
        if page_size is not None:
            self.page_size = page_size
        if permission_space_id is not None:
            self.permission_space_id = permission_space_id
        if project_name is not None:
            self.project_name = project_name
        if sort_by is not None:
            self.sort_by = sort_by
        if sort_order is not None:
            self.sort_order = sort_order
        if status is not None:
            self.status = status
        if tag_filters is not None:
            self.tag_filters = tag_filters
        if tag_ids is not None:
            self.tag_ids = tag_ids
        if template_keyword is not None:
            self.template_keyword = template_keyword

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


        :return: The backend_type of this ListServicesRequest.  # noqa: E501
        :rtype: str
        """
        return self._backend_type

    @backend_type.setter
    def backend_type(self, backend_type):
        """Sets the backend_type of this ListServicesRequest.


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

        self._backend_type = backend_type

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


        :return: The keyword of this ListServicesRequest.  # noqa: E501
        :rtype: str
        """
        return self._keyword

    @keyword.setter
    def keyword(self, keyword):
        """Sets the keyword of this ListServicesRequest.


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

        self._keyword = keyword

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


        :return: The page_number of this ListServicesRequest.  # noqa: E501
        :rtype: int
        """
        return self._page_number

    @page_number.setter
    def page_number(self, page_number):
        """Sets the page_number of this ListServicesRequest.


        :param page_number: The page_number of this ListServicesRequest.  # noqa: E501
        :type: int
        """

        self._page_number = page_number

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


        :return: The page_size of this ListServicesRequest.  # noqa: E501
        :rtype: int
        """
        return self._page_size

    @page_size.setter
    def page_size(self, page_size):
        """Sets the page_size of this ListServicesRequest.


        :param page_size: The page_size of this ListServicesRequest.  # noqa: E501
        :type: int
        """

        self._page_size = page_size

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


        :return: The permission_space_id of this ListServicesRequest.  # noqa: E501
        :rtype: str
        """
        return self._permission_space_id

    @permission_space_id.setter
    def permission_space_id(self, permission_space_id):
        """Sets the permission_space_id of this ListServicesRequest.


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

        self._permission_space_id = permission_space_id

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


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

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


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

        self._project_name = project_name

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


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

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


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

        self._sort_by = sort_by

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


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

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


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

        self._sort_order = sort_order

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


        :return: The status of this ListServicesRequest.  # noqa: E501
        :rtype: str
        """
        return self._status

    @status.setter
    def status(self, status):
        """Sets the status of this ListServicesRequest.


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

        self._status = status

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


        :return: The tag_filters of this ListServicesRequest.  # noqa: E501
        :rtype: list[TagFilterForListServicesInput]
        """
        return self._tag_filters

    @tag_filters.setter
    def tag_filters(self, tag_filters):
        """Sets the tag_filters of this ListServicesRequest.


        :param tag_filters: The tag_filters of this ListServicesRequest.  # noqa: E501
        :type: list[TagFilterForListServicesInput]
        """

        self._tag_filters = tag_filters

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


        :return: The tag_ids of this ListServicesRequest.  # noqa: E501
        :rtype: list[str]
        """
        return self._tag_ids

    @tag_ids.setter
    def tag_ids(self, tag_ids):
        """Sets the tag_ids of this ListServicesRequest.


        :param tag_ids: The tag_ids of this ListServicesRequest.  # noqa: E501
        :type: list[str]
        """

        self._tag_ids = tag_ids

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


        :return: The template_keyword of this ListServicesRequest.  # noqa: E501
        :rtype: str
        """
        return self._template_keyword

    @template_keyword.setter
    def template_keyword(self, template_keyword):
        """Sets the template_keyword of this ListServicesRequest.


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

        self._template_keyword = template_keyword

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

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