2020-05-18 11:50:57 +00:00
|
|
|
|
# coding: utf-8
|
|
|
|
|
|
|
|
|
|
import re
|
|
|
|
|
import six
|
|
|
|
|
|
|
|
|
|
|
2020-07-15 09:30:15 +00:00
|
|
|
|
|
2021-07-26 11:24:08 +00:00
|
|
|
|
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
|
2020-07-15 09:30:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ExerciseCard:
|
2020-05-18 11:50:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
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.
|
|
|
|
|
"""
|
|
|
|
|
|
2020-06-15 07:04:23 +00:00
|
|
|
|
sensitive_list = []
|
|
|
|
|
|
2020-05-18 11:50:57 +00:00
|
|
|
|
openapi_types = {
|
|
|
|
|
'name': 'str',
|
|
|
|
|
'exercise_id': 'str',
|
|
|
|
|
'description': 'str',
|
|
|
|
|
'resource_sub_type': 'int',
|
|
|
|
|
'target_score': 'int'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
attribute_map = {
|
|
|
|
|
'name': 'name',
|
|
|
|
|
'exercise_id': 'exercise_id',
|
|
|
|
|
'description': 'description',
|
|
|
|
|
'resource_sub_type': 'resource_sub_type',
|
|
|
|
|
'target_score': 'target_score'
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-15 09:30:15 +00:00
|
|
|
|
def __init__(self, name=None, exercise_id=None, description=None, resource_sub_type=None, target_score=None):
|
2020-05-18 11:50:57 +00:00
|
|
|
|
"""ExerciseCard - a model defined in huaweicloud sdk"""
|
2020-07-15 09:30:15 +00:00
|
|
|
|
|
|
|
|
|
|
2020-05-18 11:50:57 +00:00
|
|
|
|
|
|
|
|
|
self._name = None
|
|
|
|
|
self._exercise_id = None
|
|
|
|
|
self._description = None
|
|
|
|
|
self._resource_sub_type = None
|
|
|
|
|
self._target_score = None
|
|
|
|
|
self.discriminator = None
|
|
|
|
|
|
|
|
|
|
self.name = name
|
|
|
|
|
self.exercise_id = exercise_id
|
|
|
|
|
self.description = description
|
|
|
|
|
self.resource_sub_type = resource_sub_type
|
|
|
|
|
self.target_score = target_score
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def name(self):
|
|
|
|
|
"""Gets the name of this ExerciseCard.
|
|
|
|
|
|
|
|
|
|
习题名称
|
|
|
|
|
|
|
|
|
|
:return: The name of this ExerciseCard.
|
|
|
|
|
:rtype: str
|
|
|
|
|
"""
|
|
|
|
|
return self._name
|
|
|
|
|
|
|
|
|
|
@name.setter
|
|
|
|
|
def name(self, name):
|
|
|
|
|
"""Sets the name of this ExerciseCard.
|
|
|
|
|
|
|
|
|
|
习题名称
|
|
|
|
|
|
|
|
|
|
:param name: The name of this ExerciseCard.
|
|
|
|
|
:type: str
|
|
|
|
|
"""
|
|
|
|
|
self._name = name
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def exercise_id(self):
|
|
|
|
|
"""Gets the exercise_id of this ExerciseCard.
|
|
|
|
|
|
|
|
|
|
习题ID
|
|
|
|
|
|
|
|
|
|
:return: The exercise_id of this ExerciseCard.
|
|
|
|
|
:rtype: str
|
|
|
|
|
"""
|
|
|
|
|
return self._exercise_id
|
|
|
|
|
|
|
|
|
|
@exercise_id.setter
|
|
|
|
|
def exercise_id(self, exercise_id):
|
|
|
|
|
"""Sets the exercise_id of this ExerciseCard.
|
|
|
|
|
|
|
|
|
|
习题ID
|
|
|
|
|
|
|
|
|
|
:param exercise_id: The exercise_id of this ExerciseCard.
|
|
|
|
|
:type: str
|
|
|
|
|
"""
|
|
|
|
|
self._exercise_id = exercise_id
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def description(self):
|
|
|
|
|
"""Gets the description of this ExerciseCard.
|
|
|
|
|
|
|
|
|
|
习题描述
|
|
|
|
|
|
|
|
|
|
:return: The description of this ExerciseCard.
|
|
|
|
|
:rtype: str
|
|
|
|
|
"""
|
|
|
|
|
return self._description
|
|
|
|
|
|
|
|
|
|
@description.setter
|
|
|
|
|
def description(self, description):
|
|
|
|
|
"""Sets the description of this ExerciseCard.
|
|
|
|
|
|
|
|
|
|
习题描述
|
|
|
|
|
|
|
|
|
|
:param description: The description of this ExerciseCard.
|
|
|
|
|
:type: str
|
|
|
|
|
"""
|
|
|
|
|
self._description = description
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def resource_sub_type(self):
|
|
|
|
|
"""Gets the resource_sub_type of this ExerciseCard.
|
|
|
|
|
|
|
|
|
|
习题子类型 1:函数c 2:函数c++ 3:函数Java 4:函数Python 5:单人项目java 6:单人项目Hadoop 7:通用 8:企业级软件项目 10:web习题 11:AI习题 12:单选题 13:多选题 14:填空题 15:单人项目C 16:单人项目C++
|
|
|
|
|
|
|
|
|
|
:return: The resource_sub_type of this ExerciseCard.
|
|
|
|
|
:rtype: int
|
|
|
|
|
"""
|
|
|
|
|
return self._resource_sub_type
|
|
|
|
|
|
|
|
|
|
@resource_sub_type.setter
|
|
|
|
|
def resource_sub_type(self, resource_sub_type):
|
|
|
|
|
"""Sets the resource_sub_type of this ExerciseCard.
|
|
|
|
|
|
|
|
|
|
习题子类型 1:函数c 2:函数c++ 3:函数Java 4:函数Python 5:单人项目java 6:单人项目Hadoop 7:通用 8:企业级软件项目 10:web习题 11:AI习题 12:单选题 13:多选题 14:填空题 15:单人项目C 16:单人项目C++
|
|
|
|
|
|
|
|
|
|
:param resource_sub_type: The resource_sub_type of this ExerciseCard.
|
|
|
|
|
:type: int
|
|
|
|
|
"""
|
|
|
|
|
self._resource_sub_type = resource_sub_type
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def target_score(self):
|
|
|
|
|
"""Gets the target_score of this ExerciseCard.
|
|
|
|
|
|
|
|
|
|
习题分值
|
|
|
|
|
|
|
|
|
|
:return: The target_score of this ExerciseCard.
|
|
|
|
|
:rtype: int
|
|
|
|
|
"""
|
|
|
|
|
return self._target_score
|
|
|
|
|
|
|
|
|
|
@target_score.setter
|
|
|
|
|
def target_score(self, target_score):
|
|
|
|
|
"""Sets the target_score of this ExerciseCard.
|
|
|
|
|
|
|
|
|
|
习题分值
|
|
|
|
|
|
|
|
|
|
:param target_score: The target_score of this ExerciseCard.
|
|
|
|
|
:type: int
|
|
|
|
|
"""
|
|
|
|
|
self._target_score = target_score
|
|
|
|
|
|
|
|
|
|
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:
|
2020-06-15 07:04:23 +00:00
|
|
|
|
if attr in self.sensitive_list:
|
|
|
|
|
result[attr] = "****"
|
|
|
|
|
else:
|
|
|
|
|
result[attr] = value
|
2020-05-18 11:50:57 +00:00
|
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
def to_str(self):
|
2021-08-10 12:26:18 +00:00
|
|
|
|
"""Returns the string representation of the model"""
|
2021-07-09 10:57:08 +00:00
|
|
|
|
import simplejson as json
|
2021-08-10 12:26:18 +00:00
|
|
|
|
if six.PY2:
|
|
|
|
|
import sys
|
|
|
|
|
reload(sys)
|
|
|
|
|
sys.setdefaultencoding("utf-8")
|
|
|
|
|
return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
|
2020-05-18 11:50:57 +00:00
|
|
|
|
|
|
|
|
|
def __repr__(self):
|
2021-08-10 12:26:18 +00:00
|
|
|
|
"""For `print`"""
|
2020-05-18 11:50:57 +00:00
|
|
|
|
return self.to_str()
|
|
|
|
|
|
|
|
|
|
def __eq__(self, other):
|
|
|
|
|
"""Returns true if both objects are equal"""
|
|
|
|
|
if not isinstance(other, ExerciseCard):
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
return self.__dict__ == other.__dict__
|
|
|
|
|
|
|
|
|
|
def __ne__(self, other):
|
|
|
|
|
"""Returns true if both objects are not equal"""
|
|
|
|
|
return not self == other
|