huaweicloud-sdk-python-v3/huaweicloud-sdk-moderation/huaweicloudsdkmoderation/v3/model/text_detection_result.py

174 lines
5.7 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# coding: utf-8
import six
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
class TextDetectionResult:
"""
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 = {
'suggestion': 'str',
'label': 'str',
'details': 'list[TextDetectionResultDetail]'
}
attribute_map = {
'suggestion': 'suggestion',
'label': 'label',
'details': 'details'
}
def __init__(self, suggestion=None, label=None, details=None):
"""TextDetectionResult
The model defined in huaweicloud sdk
:param suggestion: 审核结果是否通过。 block包含敏感信息不通过 pass不包含敏感信息通过 review需要人工复检
:type suggestion: str
:param label: 检测结果的标签。 支持label列表如下 politics: 涉政 terrorism: 暴恐 porn: 色情 ban: 违禁 abuse: 辱骂 ad: 广告 ad_law: 广告法 meaningless: ⽆意义 customized自定义命中自定义词库中的关键词
:type label: str
:param details: 检测详情
:type details: list[:class:`huaweicloudsdkmoderation.v3.TextDetectionResultDetail`]
"""
self._suggestion = None
self._label = None
self._details = None
self.discriminator = None
if suggestion is not None:
self.suggestion = suggestion
if label is not None:
self.label = label
if details is not None:
self.details = details
@property
def suggestion(self):
"""Gets the suggestion of this TextDetectionResult.
审核结果是否通过。 block包含敏感信息不通过 pass不包含敏感信息通过 review需要人工复检
:return: The suggestion of this TextDetectionResult.
:rtype: str
"""
return self._suggestion
@suggestion.setter
def suggestion(self, suggestion):
"""Sets the suggestion of this TextDetectionResult.
审核结果是否通过。 block包含敏感信息不通过 pass不包含敏感信息通过 review需要人工复检
:param suggestion: The suggestion of this TextDetectionResult.
:type suggestion: str
"""
self._suggestion = suggestion
@property
def label(self):
"""Gets the label of this TextDetectionResult.
检测结果的标签。 支持label列表如下 politics: 涉政 terrorism: 暴恐 porn: 色情 ban: 违禁 abuse: 辱骂 ad: 广告 ad_law: 广告法 meaningless: ⽆意义 customized自定义命中自定义词库中的关键词
:return: The label of this TextDetectionResult.
:rtype: str
"""
return self._label
@label.setter
def label(self, label):
"""Sets the label of this TextDetectionResult.
检测结果的标签。 支持label列表如下 politics: 涉政 terrorism: 暴恐 porn: 色情 ban: 违禁 abuse: 辱骂 ad: 广告 ad_law: 广告法 meaningless: ⽆意义 customized自定义命中自定义词库中的关键词
:param label: The label of this TextDetectionResult.
:type label: str
"""
self._label = label
@property
def details(self):
"""Gets the details of this TextDetectionResult.
检测详情
:return: The details of this TextDetectionResult.
:rtype: list[:class:`huaweicloudsdkmoderation.v3.TextDetectionResultDetail`]
"""
return self._details
@details.setter
def details(self, details):
"""Sets the details of this TextDetectionResult.
检测详情
:param details: The details of this TextDetectionResult.
:type details: list[:class:`huaweicloudsdkmoderation.v3.TextDetectionResultDetail`]
"""
self._details = details
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, TextDetectionResult):
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
"""Returns true if both objects are not equal"""
return not self == other