# coding: utf-8 import six from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization class CheckRulesetParametersRequest: """ Attributes: openapi_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. """ sensitive_list = [] openapi_types = { 'project_id': 'str', 'task_id': 'str', 'ruleset_id': 'str', 'language': 'str', 'offset': 'int', 'limit': 'int' } attribute_map = { 'project_id': 'project_id', 'task_id': 'task_id', 'ruleset_id': 'ruleset_id', 'language': 'language', 'offset': 'offset', 'limit': 'limit' } def __init__(self, project_id=None, task_id=None, ruleset_id=None, language=None, offset=None, limit=None): """CheckRulesetParametersRequest The model defined in huaweicloud sdk :param project_id: 项目ID :type project_id: str :param task_id: 任务ID :type task_id: str :param ruleset_id: 规则集ID :type ruleset_id: str :param language: 规则集语言 :type language: str :param offset: 分页索引,偏移量,非必填 :type offset: int :param limit: 每页显示的数量,非必填 :type limit: int """ self._project_id = None self._task_id = None self._ruleset_id = None self._language = None self._offset = None self._limit = None self.discriminator = None self.project_id = project_id self.task_id = task_id self.ruleset_id = ruleset_id self.language = language if offset is not None: self.offset = offset if limit is not None: self.limit = limit @property def project_id(self): """Gets the project_id of this CheckRulesetParametersRequest. 项目ID :return: The project_id of this CheckRulesetParametersRequest. :rtype: str """ return self._project_id @project_id.setter def project_id(self, project_id): """Sets the project_id of this CheckRulesetParametersRequest. 项目ID :param project_id: The project_id of this CheckRulesetParametersRequest. :type project_id: str """ self._project_id = project_id @property def task_id(self): """Gets the task_id of this CheckRulesetParametersRequest. 任务ID :return: The task_id of this CheckRulesetParametersRequest. :rtype: str """ return self._task_id @task_id.setter def task_id(self, task_id): """Sets the task_id of this CheckRulesetParametersRequest. 任务ID :param task_id: The task_id of this CheckRulesetParametersRequest. :type task_id: str """ self._task_id = task_id @property def ruleset_id(self): """Gets the ruleset_id of this CheckRulesetParametersRequest. 规则集ID :return: The ruleset_id of this CheckRulesetParametersRequest. :rtype: str """ return self._ruleset_id @ruleset_id.setter def ruleset_id(self, ruleset_id): """Sets the ruleset_id of this CheckRulesetParametersRequest. 规则集ID :param ruleset_id: The ruleset_id of this CheckRulesetParametersRequest. :type ruleset_id: str """ self._ruleset_id = ruleset_id @property def language(self): """Gets the language of this CheckRulesetParametersRequest. 规则集语言 :return: The language of this CheckRulesetParametersRequest. :rtype: str """ return self._language @language.setter def language(self, language): """Sets the language of this CheckRulesetParametersRequest. 规则集语言 :param language: The language of this CheckRulesetParametersRequest. :type language: str """ self._language = language @property def offset(self): """Gets the offset of this CheckRulesetParametersRequest. 分页索引,偏移量,非必填 :return: The offset of this CheckRulesetParametersRequest. :rtype: int """ return self._offset @offset.setter def offset(self, offset): """Sets the offset of this CheckRulesetParametersRequest. 分页索引,偏移量,非必填 :param offset: The offset of this CheckRulesetParametersRequest. :type offset: int """ self._offset = offset @property def limit(self): """Gets the limit of this CheckRulesetParametersRequest. 每页显示的数量,非必填 :return: The limit of this CheckRulesetParametersRequest. :rtype: int """ return self._limit @limit.setter def limit(self, limit): """Sets the limit of this CheckRulesetParametersRequest. 每页显示的数量,非必填 :param limit: The limit of this CheckRulesetParametersRequest. :type limit: int """ self._limit = limit def to_dict(self): """Returns the model properties as a dict""" result = {} for attr, _ in six.iteritems(self.openapi_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: if attr in self.sensitive_list: result[attr] = "****" else: result[attr] = value return result def to_str(self): """Returns the string representation of the model""" import simplejson as json if six.PY2: import sys reload(sys) sys.setdefaultencoding("utf-8") return json.dumps(sanitize_for_serialization(self), ensure_ascii=False) def __repr__(self): """For `print`""" return self.to_str() def __eq__(self, other): """Returns true if both objects are equal""" if not isinstance(other, CheckRulesetParametersRequest): return False return self.__dict__ == other.__dict__ def __ne__(self, other): """Returns true if both objects are not equal""" return not self == other