huaweicloudsdkeihealth 3.1.121__py2.py3-none-any.whl → 3.1.123__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- huaweicloudsdkeihealth/v1/__init__.py +24 -0
- huaweicloudsdkeihealth/v1/eihealth_async_client.py +492 -0
- huaweicloudsdkeihealth/v1/eihealth_client.py +492 -0
- huaweicloudsdkeihealth/v1/model/__init__.py +24 -0
- huaweicloudsdkeihealth/v1/model/bound_box_dto.py +171 -0
- huaweicloudsdkeihealth/v1/model/clustering_drug_file.py +197 -0
- huaweicloudsdkeihealth/v1/model/clustering_file_source.py +89 -0
- huaweicloudsdkeihealth/v1/model/convert_file.py +197 -0
- huaweicloudsdkeihealth/v1/model/create_clustering_job_req.py +134 -0
- huaweicloudsdkeihealth/v1/model/create_clustering_job_request.py +139 -0
- huaweicloudsdkeihealth/v1/model/create_clustering_job_response.py +145 -0
- huaweicloudsdkeihealth/v1/model/create_favorite_req.py +254 -0
- huaweicloudsdkeihealth/v1/model/create_favorite_request.py +139 -0
- huaweicloudsdkeihealth/v1/model/create_favorite_response.py +116 -0
- huaweicloudsdkeihealth/v1/model/create_mol_docking_job_req.py +163 -0
- huaweicloudsdkeihealth/v1/model/create_mol_docking_job_request.py +139 -0
- huaweicloudsdkeihealth/v1/model/create_mol_docking_job_response.py +145 -0
- huaweicloudsdkeihealth/v1/model/delete_favorite_request.py +142 -0
- huaweicloudsdkeihealth/v1/model/delete_favorite_response.py +85 -0
- huaweicloudsdkeihealth/v1/model/favorite_dto.py +376 -0
- huaweicloudsdkeihealth/v1/model/list_favorite_request.py +433 -0
- huaweicloudsdkeihealth/v1/model/list_favorite_response.py +145 -0
- huaweicloudsdkeihealth/v1/model/optimization_mode.py +1 -0
- huaweicloudsdkeihealth/v1/model/receptor_dto.py +280 -0
- huaweicloudsdkeihealth/v1/model/run_format_converter_req.py +166 -0
- huaweicloudsdkeihealth/v1/model/run_format_converter_request.py +139 -0
- huaweicloudsdkeihealth/v1/model/run_format_converter_response.py +112 -0
- huaweicloudsdkeihealth/v1/model/show_clustering_job_request.py +142 -0
- huaweicloudsdkeihealth/v1/model/show_clustering_job_response.py +191 -0
- {huaweicloudsdkeihealth-3.1.121.dist-info → huaweicloudsdkeihealth-3.1.123.dist-info}/METADATA +2 -2
- {huaweicloudsdkeihealth-3.1.121.dist-info → huaweicloudsdkeihealth-3.1.123.dist-info}/RECORD +34 -10
- {huaweicloudsdkeihealth-3.1.121.dist-info → huaweicloudsdkeihealth-3.1.123.dist-info}/WHEEL +1 -1
- {huaweicloudsdkeihealth-3.1.121.dist-info → huaweicloudsdkeihealth-3.1.123.dist-info}/LICENSE +0 -0
- {huaweicloudsdkeihealth-3.1.121.dist-info → huaweicloudsdkeihealth-3.1.123.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,134 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
import six
|
4
|
+
|
5
|
+
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
|
6
|
+
|
7
|
+
|
8
|
+
class CreateClusteringJobReq:
|
9
|
+
|
10
|
+
"""
|
11
|
+
Attributes:
|
12
|
+
openapi_types (dict): The key is attribute name
|
13
|
+
and the value is attribute type.
|
14
|
+
attribute_map (dict): The key is attribute name
|
15
|
+
and the value is json key in definition.
|
16
|
+
"""
|
17
|
+
sensitive_list = []
|
18
|
+
|
19
|
+
openapi_types = {
|
20
|
+
'basic_info': 'CreateDrugJobBasicInfo',
|
21
|
+
'file': 'ClusteringDrugFile'
|
22
|
+
}
|
23
|
+
|
24
|
+
attribute_map = {
|
25
|
+
'basic_info': 'basic_info',
|
26
|
+
'file': 'file'
|
27
|
+
}
|
28
|
+
|
29
|
+
def __init__(self, basic_info=None, file=None):
|
30
|
+
"""CreateClusteringJobReq
|
31
|
+
|
32
|
+
The model defined in huaweicloud sdk
|
33
|
+
|
34
|
+
:param basic_info:
|
35
|
+
:type basic_info: :class:`huaweicloudsdkeihealth.v1.CreateDrugJobBasicInfo`
|
36
|
+
:param file:
|
37
|
+
:type file: :class:`huaweicloudsdkeihealth.v1.ClusteringDrugFile`
|
38
|
+
"""
|
39
|
+
|
40
|
+
|
41
|
+
|
42
|
+
self._basic_info = None
|
43
|
+
self._file = None
|
44
|
+
self.discriminator = None
|
45
|
+
|
46
|
+
self.basic_info = basic_info
|
47
|
+
self.file = file
|
48
|
+
|
49
|
+
@property
|
50
|
+
def basic_info(self):
|
51
|
+
"""Gets the basic_info of this CreateClusteringJobReq.
|
52
|
+
|
53
|
+
:return: The basic_info of this CreateClusteringJobReq.
|
54
|
+
:rtype: :class:`huaweicloudsdkeihealth.v1.CreateDrugJobBasicInfo`
|
55
|
+
"""
|
56
|
+
return self._basic_info
|
57
|
+
|
58
|
+
@basic_info.setter
|
59
|
+
def basic_info(self, basic_info):
|
60
|
+
"""Sets the basic_info of this CreateClusteringJobReq.
|
61
|
+
|
62
|
+
:param basic_info: The basic_info of this CreateClusteringJobReq.
|
63
|
+
:type basic_info: :class:`huaweicloudsdkeihealth.v1.CreateDrugJobBasicInfo`
|
64
|
+
"""
|
65
|
+
self._basic_info = basic_info
|
66
|
+
|
67
|
+
@property
|
68
|
+
def file(self):
|
69
|
+
"""Gets the file of this CreateClusteringJobReq.
|
70
|
+
|
71
|
+
:return: The file of this CreateClusteringJobReq.
|
72
|
+
:rtype: :class:`huaweicloudsdkeihealth.v1.ClusteringDrugFile`
|
73
|
+
"""
|
74
|
+
return self._file
|
75
|
+
|
76
|
+
@file.setter
|
77
|
+
def file(self, file):
|
78
|
+
"""Sets the file of this CreateClusteringJobReq.
|
79
|
+
|
80
|
+
:param file: The file of this CreateClusteringJobReq.
|
81
|
+
:type file: :class:`huaweicloudsdkeihealth.v1.ClusteringDrugFile`
|
82
|
+
"""
|
83
|
+
self._file = file
|
84
|
+
|
85
|
+
def to_dict(self):
|
86
|
+
"""Returns the model properties as a dict"""
|
87
|
+
result = {}
|
88
|
+
|
89
|
+
for attr, _ in six.iteritems(self.openapi_types):
|
90
|
+
value = getattr(self, attr)
|
91
|
+
if isinstance(value, list):
|
92
|
+
result[attr] = list(map(
|
93
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
94
|
+
value
|
95
|
+
))
|
96
|
+
elif hasattr(value, "to_dict"):
|
97
|
+
result[attr] = value.to_dict()
|
98
|
+
elif isinstance(value, dict):
|
99
|
+
result[attr] = dict(map(
|
100
|
+
lambda item: (item[0], item[1].to_dict())
|
101
|
+
if hasattr(item[1], "to_dict") else item,
|
102
|
+
value.items()
|
103
|
+
))
|
104
|
+
else:
|
105
|
+
if attr in self.sensitive_list:
|
106
|
+
result[attr] = "****"
|
107
|
+
else:
|
108
|
+
result[attr] = value
|
109
|
+
|
110
|
+
return result
|
111
|
+
|
112
|
+
def to_str(self):
|
113
|
+
"""Returns the string representation of the model"""
|
114
|
+
import simplejson as json
|
115
|
+
if six.PY2:
|
116
|
+
import sys
|
117
|
+
reload(sys)
|
118
|
+
sys.setdefaultencoding("utf-8")
|
119
|
+
return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
|
120
|
+
|
121
|
+
def __repr__(self):
|
122
|
+
"""For `print`"""
|
123
|
+
return self.to_str()
|
124
|
+
|
125
|
+
def __eq__(self, other):
|
126
|
+
"""Returns true if both objects are equal"""
|
127
|
+
if not isinstance(other, CreateClusteringJobReq):
|
128
|
+
return False
|
129
|
+
|
130
|
+
return self.__dict__ == other.__dict__
|
131
|
+
|
132
|
+
def __ne__(self, other):
|
133
|
+
"""Returns true if both objects are not equal"""
|
134
|
+
return not self == other
|
@@ -0,0 +1,139 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
import six
|
4
|
+
|
5
|
+
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
|
6
|
+
|
7
|
+
|
8
|
+
class CreateClusteringJobRequest:
|
9
|
+
|
10
|
+
"""
|
11
|
+
Attributes:
|
12
|
+
openapi_types (dict): The key is attribute name
|
13
|
+
and the value is attribute type.
|
14
|
+
attribute_map (dict): The key is attribute name
|
15
|
+
and the value is json key in definition.
|
16
|
+
"""
|
17
|
+
sensitive_list = []
|
18
|
+
|
19
|
+
openapi_types = {
|
20
|
+
'eihealth_project_id': 'str',
|
21
|
+
'body': 'CreateClusteringJobReq'
|
22
|
+
}
|
23
|
+
|
24
|
+
attribute_map = {
|
25
|
+
'eihealth_project_id': 'eihealth_project_id',
|
26
|
+
'body': 'body'
|
27
|
+
}
|
28
|
+
|
29
|
+
def __init__(self, eihealth_project_id=None, body=None):
|
30
|
+
"""CreateClusteringJobRequest
|
31
|
+
|
32
|
+
The model defined in huaweicloud sdk
|
33
|
+
|
34
|
+
:param eihealth_project_id: 平台项目ID。
|
35
|
+
:type eihealth_project_id: str
|
36
|
+
:param body: Body of the CreateClusteringJobRequest
|
37
|
+
:type body: :class:`huaweicloudsdkeihealth.v1.CreateClusteringJobReq`
|
38
|
+
"""
|
39
|
+
|
40
|
+
|
41
|
+
|
42
|
+
self._eihealth_project_id = None
|
43
|
+
self._body = None
|
44
|
+
self.discriminator = None
|
45
|
+
|
46
|
+
self.eihealth_project_id = eihealth_project_id
|
47
|
+
if body is not None:
|
48
|
+
self.body = body
|
49
|
+
|
50
|
+
@property
|
51
|
+
def eihealth_project_id(self):
|
52
|
+
"""Gets the eihealth_project_id of this CreateClusteringJobRequest.
|
53
|
+
|
54
|
+
平台项目ID。
|
55
|
+
|
56
|
+
:return: The eihealth_project_id of this CreateClusteringJobRequest.
|
57
|
+
:rtype: str
|
58
|
+
"""
|
59
|
+
return self._eihealth_project_id
|
60
|
+
|
61
|
+
@eihealth_project_id.setter
|
62
|
+
def eihealth_project_id(self, eihealth_project_id):
|
63
|
+
"""Sets the eihealth_project_id of this CreateClusteringJobRequest.
|
64
|
+
|
65
|
+
平台项目ID。
|
66
|
+
|
67
|
+
:param eihealth_project_id: The eihealth_project_id of this CreateClusteringJobRequest.
|
68
|
+
:type eihealth_project_id: str
|
69
|
+
"""
|
70
|
+
self._eihealth_project_id = eihealth_project_id
|
71
|
+
|
72
|
+
@property
|
73
|
+
def body(self):
|
74
|
+
"""Gets the body of this CreateClusteringJobRequest.
|
75
|
+
|
76
|
+
:return: The body of this CreateClusteringJobRequest.
|
77
|
+
:rtype: :class:`huaweicloudsdkeihealth.v1.CreateClusteringJobReq`
|
78
|
+
"""
|
79
|
+
return self._body
|
80
|
+
|
81
|
+
@body.setter
|
82
|
+
def body(self, body):
|
83
|
+
"""Sets the body of this CreateClusteringJobRequest.
|
84
|
+
|
85
|
+
:param body: The body of this CreateClusteringJobRequest.
|
86
|
+
:type body: :class:`huaweicloudsdkeihealth.v1.CreateClusteringJobReq`
|
87
|
+
"""
|
88
|
+
self._body = body
|
89
|
+
|
90
|
+
def to_dict(self):
|
91
|
+
"""Returns the model properties as a dict"""
|
92
|
+
result = {}
|
93
|
+
|
94
|
+
for attr, _ in six.iteritems(self.openapi_types):
|
95
|
+
value = getattr(self, attr)
|
96
|
+
if isinstance(value, list):
|
97
|
+
result[attr] = list(map(
|
98
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
99
|
+
value
|
100
|
+
))
|
101
|
+
elif hasattr(value, "to_dict"):
|
102
|
+
result[attr] = value.to_dict()
|
103
|
+
elif isinstance(value, dict):
|
104
|
+
result[attr] = dict(map(
|
105
|
+
lambda item: (item[0], item[1].to_dict())
|
106
|
+
if hasattr(item[1], "to_dict") else item,
|
107
|
+
value.items()
|
108
|
+
))
|
109
|
+
else:
|
110
|
+
if attr in self.sensitive_list:
|
111
|
+
result[attr] = "****"
|
112
|
+
else:
|
113
|
+
result[attr] = value
|
114
|
+
|
115
|
+
return result
|
116
|
+
|
117
|
+
def to_str(self):
|
118
|
+
"""Returns the string representation of the model"""
|
119
|
+
import simplejson as json
|
120
|
+
if six.PY2:
|
121
|
+
import sys
|
122
|
+
reload(sys)
|
123
|
+
sys.setdefaultencoding("utf-8")
|
124
|
+
return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
|
125
|
+
|
126
|
+
def __repr__(self):
|
127
|
+
"""For `print`"""
|
128
|
+
return self.to_str()
|
129
|
+
|
130
|
+
def __eq__(self, other):
|
131
|
+
"""Returns true if both objects are equal"""
|
132
|
+
if not isinstance(other, CreateClusteringJobRequest):
|
133
|
+
return False
|
134
|
+
|
135
|
+
return self.__dict__ == other.__dict__
|
136
|
+
|
137
|
+
def __ne__(self, other):
|
138
|
+
"""Returns true if both objects are not equal"""
|
139
|
+
return not self == other
|
@@ -0,0 +1,145 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
import six
|
4
|
+
|
5
|
+
from huaweicloudsdkcore.sdk_response import SdkResponse
|
6
|
+
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
|
7
|
+
|
8
|
+
|
9
|
+
class CreateClusteringJobResponse(SdkResponse):
|
10
|
+
|
11
|
+
"""
|
12
|
+
Attributes:
|
13
|
+
openapi_types (dict): The key is attribute name
|
14
|
+
and the value is attribute type.
|
15
|
+
attribute_map (dict): The key is attribute name
|
16
|
+
and the value is json key in definition.
|
17
|
+
"""
|
18
|
+
sensitive_list = []
|
19
|
+
|
20
|
+
openapi_types = {
|
21
|
+
'id': 'str',
|
22
|
+
'limit_concurrency': 'int'
|
23
|
+
}
|
24
|
+
|
25
|
+
attribute_map = {
|
26
|
+
'id': 'id',
|
27
|
+
'limit_concurrency': 'limit_concurrency'
|
28
|
+
}
|
29
|
+
|
30
|
+
def __init__(self, id=None, limit_concurrency=None):
|
31
|
+
"""CreateClusteringJobResponse
|
32
|
+
|
33
|
+
The model defined in huaweicloud sdk
|
34
|
+
|
35
|
+
:param id: 作业id
|
36
|
+
:type id: str
|
37
|
+
:param limit_concurrency: 限制的并发量
|
38
|
+
:type limit_concurrency: int
|
39
|
+
"""
|
40
|
+
|
41
|
+
super(CreateClusteringJobResponse, self).__init__()
|
42
|
+
|
43
|
+
self._id = None
|
44
|
+
self._limit_concurrency = None
|
45
|
+
self.discriminator = None
|
46
|
+
|
47
|
+
if id is not None:
|
48
|
+
self.id = id
|
49
|
+
if limit_concurrency is not None:
|
50
|
+
self.limit_concurrency = limit_concurrency
|
51
|
+
|
52
|
+
@property
|
53
|
+
def id(self):
|
54
|
+
"""Gets the id of this CreateClusteringJobResponse.
|
55
|
+
|
56
|
+
作业id
|
57
|
+
|
58
|
+
:return: The id of this CreateClusteringJobResponse.
|
59
|
+
:rtype: str
|
60
|
+
"""
|
61
|
+
return self._id
|
62
|
+
|
63
|
+
@id.setter
|
64
|
+
def id(self, id):
|
65
|
+
"""Sets the id of this CreateClusteringJobResponse.
|
66
|
+
|
67
|
+
作业id
|
68
|
+
|
69
|
+
:param id: The id of this CreateClusteringJobResponse.
|
70
|
+
:type id: str
|
71
|
+
"""
|
72
|
+
self._id = id
|
73
|
+
|
74
|
+
@property
|
75
|
+
def limit_concurrency(self):
|
76
|
+
"""Gets the limit_concurrency of this CreateClusteringJobResponse.
|
77
|
+
|
78
|
+
限制的并发量
|
79
|
+
|
80
|
+
:return: The limit_concurrency of this CreateClusteringJobResponse.
|
81
|
+
:rtype: int
|
82
|
+
"""
|
83
|
+
return self._limit_concurrency
|
84
|
+
|
85
|
+
@limit_concurrency.setter
|
86
|
+
def limit_concurrency(self, limit_concurrency):
|
87
|
+
"""Sets the limit_concurrency of this CreateClusteringJobResponse.
|
88
|
+
|
89
|
+
限制的并发量
|
90
|
+
|
91
|
+
:param limit_concurrency: The limit_concurrency of this CreateClusteringJobResponse.
|
92
|
+
:type limit_concurrency: int
|
93
|
+
"""
|
94
|
+
self._limit_concurrency = limit_concurrency
|
95
|
+
|
96
|
+
def to_dict(self):
|
97
|
+
"""Returns the model properties as a dict"""
|
98
|
+
result = {}
|
99
|
+
|
100
|
+
for attr, _ in six.iteritems(self.openapi_types):
|
101
|
+
value = getattr(self, attr)
|
102
|
+
if isinstance(value, list):
|
103
|
+
result[attr] = list(map(
|
104
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
105
|
+
value
|
106
|
+
))
|
107
|
+
elif hasattr(value, "to_dict"):
|
108
|
+
result[attr] = value.to_dict()
|
109
|
+
elif isinstance(value, dict):
|
110
|
+
result[attr] = dict(map(
|
111
|
+
lambda item: (item[0], item[1].to_dict())
|
112
|
+
if hasattr(item[1], "to_dict") else item,
|
113
|
+
value.items()
|
114
|
+
))
|
115
|
+
else:
|
116
|
+
if attr in self.sensitive_list:
|
117
|
+
result[attr] = "****"
|
118
|
+
else:
|
119
|
+
result[attr] = value
|
120
|
+
|
121
|
+
return result
|
122
|
+
|
123
|
+
def to_str(self):
|
124
|
+
"""Returns the string representation of the model"""
|
125
|
+
import simplejson as json
|
126
|
+
if six.PY2:
|
127
|
+
import sys
|
128
|
+
reload(sys)
|
129
|
+
sys.setdefaultencoding("utf-8")
|
130
|
+
return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
|
131
|
+
|
132
|
+
def __repr__(self):
|
133
|
+
"""For `print`"""
|
134
|
+
return self.to_str()
|
135
|
+
|
136
|
+
def __eq__(self, other):
|
137
|
+
"""Returns true if both objects are equal"""
|
138
|
+
if not isinstance(other, CreateClusteringJobResponse):
|
139
|
+
return False
|
140
|
+
|
141
|
+
return self.__dict__ == other.__dict__
|
142
|
+
|
143
|
+
def __ne__(self, other):
|
144
|
+
"""Returns true if both objects are not equal"""
|
145
|
+
return not self == other
|
@@ -0,0 +1,254 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
import six
|
4
|
+
|
5
|
+
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
|
6
|
+
|
7
|
+
|
8
|
+
class CreateFavoriteReq:
|
9
|
+
|
10
|
+
"""
|
11
|
+
Attributes:
|
12
|
+
openapi_types (dict): The key is attribute name
|
13
|
+
and the value is attribute type.
|
14
|
+
attribute_map (dict): The key is attribute name
|
15
|
+
and the value is json key in definition.
|
16
|
+
"""
|
17
|
+
sensitive_list = []
|
18
|
+
|
19
|
+
openapi_types = {
|
20
|
+
'type': 'str',
|
21
|
+
'resource_id': 'str',
|
22
|
+
'resource_name': 'str',
|
23
|
+
'resource_type': 'str',
|
24
|
+
'display_info': 'str',
|
25
|
+
'location_info': 'str'
|
26
|
+
}
|
27
|
+
|
28
|
+
attribute_map = {
|
29
|
+
'type': 'type',
|
30
|
+
'resource_id': 'resource_id',
|
31
|
+
'resource_name': 'resource_name',
|
32
|
+
'resource_type': 'resource_type',
|
33
|
+
'display_info': 'display_info',
|
34
|
+
'location_info': 'location_info'
|
35
|
+
}
|
36
|
+
|
37
|
+
def __init__(self, type=None, resource_id=None, resource_name=None, resource_type=None, display_info=None, location_info=None):
|
38
|
+
"""CreateFavoriteReq
|
39
|
+
|
40
|
+
The model defined in huaweicloud sdk
|
41
|
+
|
42
|
+
:param type: 收藏类型。
|
43
|
+
:type type: str
|
44
|
+
:param resource_id: 收藏的资源ID。
|
45
|
+
:type resource_id: str
|
46
|
+
:param resource_name: 收藏的资源名称,正则匹配中文,英文字母和数字及下划线。
|
47
|
+
:type resource_name: str
|
48
|
+
:param resource_type: 收藏的资源类型,正则匹配英文字母和数字及下划线。
|
49
|
+
:type resource_type: str
|
50
|
+
:param display_info: 展示信息。
|
51
|
+
:type display_info: str
|
52
|
+
:param location_info: 定位信息。
|
53
|
+
:type location_info: str
|
54
|
+
"""
|
55
|
+
|
56
|
+
|
57
|
+
|
58
|
+
self._type = None
|
59
|
+
self._resource_id = None
|
60
|
+
self._resource_name = None
|
61
|
+
self._resource_type = None
|
62
|
+
self._display_info = None
|
63
|
+
self._location_info = None
|
64
|
+
self.discriminator = None
|
65
|
+
|
66
|
+
self.type = type
|
67
|
+
self.resource_id = resource_id
|
68
|
+
self.resource_name = resource_name
|
69
|
+
self.resource_type = resource_type
|
70
|
+
self.display_info = display_info
|
71
|
+
self.location_info = location_info
|
72
|
+
|
73
|
+
@property
|
74
|
+
def type(self):
|
75
|
+
"""Gets the type of this CreateFavoriteReq.
|
76
|
+
|
77
|
+
收藏类型。
|
78
|
+
|
79
|
+
:return: The type of this CreateFavoriteReq.
|
80
|
+
:rtype: str
|
81
|
+
"""
|
82
|
+
return self._type
|
83
|
+
|
84
|
+
@type.setter
|
85
|
+
def type(self, type):
|
86
|
+
"""Sets the type of this CreateFavoriteReq.
|
87
|
+
|
88
|
+
收藏类型。
|
89
|
+
|
90
|
+
:param type: The type of this CreateFavoriteReq.
|
91
|
+
:type type: str
|
92
|
+
"""
|
93
|
+
self._type = type
|
94
|
+
|
95
|
+
@property
|
96
|
+
def resource_id(self):
|
97
|
+
"""Gets the resource_id of this CreateFavoriteReq.
|
98
|
+
|
99
|
+
收藏的资源ID。
|
100
|
+
|
101
|
+
:return: The resource_id of this CreateFavoriteReq.
|
102
|
+
:rtype: str
|
103
|
+
"""
|
104
|
+
return self._resource_id
|
105
|
+
|
106
|
+
@resource_id.setter
|
107
|
+
def resource_id(self, resource_id):
|
108
|
+
"""Sets the resource_id of this CreateFavoriteReq.
|
109
|
+
|
110
|
+
收藏的资源ID。
|
111
|
+
|
112
|
+
:param resource_id: The resource_id of this CreateFavoriteReq.
|
113
|
+
:type resource_id: str
|
114
|
+
"""
|
115
|
+
self._resource_id = resource_id
|
116
|
+
|
117
|
+
@property
|
118
|
+
def resource_name(self):
|
119
|
+
"""Gets the resource_name of this CreateFavoriteReq.
|
120
|
+
|
121
|
+
收藏的资源名称,正则匹配中文,英文字母和数字及下划线。
|
122
|
+
|
123
|
+
:return: The resource_name of this CreateFavoriteReq.
|
124
|
+
:rtype: str
|
125
|
+
"""
|
126
|
+
return self._resource_name
|
127
|
+
|
128
|
+
@resource_name.setter
|
129
|
+
def resource_name(self, resource_name):
|
130
|
+
"""Sets the resource_name of this CreateFavoriteReq.
|
131
|
+
|
132
|
+
收藏的资源名称,正则匹配中文,英文字母和数字及下划线。
|
133
|
+
|
134
|
+
:param resource_name: The resource_name of this CreateFavoriteReq.
|
135
|
+
:type resource_name: str
|
136
|
+
"""
|
137
|
+
self._resource_name = resource_name
|
138
|
+
|
139
|
+
@property
|
140
|
+
def resource_type(self):
|
141
|
+
"""Gets the resource_type of this CreateFavoriteReq.
|
142
|
+
|
143
|
+
收藏的资源类型,正则匹配英文字母和数字及下划线。
|
144
|
+
|
145
|
+
:return: The resource_type of this CreateFavoriteReq.
|
146
|
+
:rtype: str
|
147
|
+
"""
|
148
|
+
return self._resource_type
|
149
|
+
|
150
|
+
@resource_type.setter
|
151
|
+
def resource_type(self, resource_type):
|
152
|
+
"""Sets the resource_type of this CreateFavoriteReq.
|
153
|
+
|
154
|
+
收藏的资源类型,正则匹配英文字母和数字及下划线。
|
155
|
+
|
156
|
+
:param resource_type: The resource_type of this CreateFavoriteReq.
|
157
|
+
:type resource_type: str
|
158
|
+
"""
|
159
|
+
self._resource_type = resource_type
|
160
|
+
|
161
|
+
@property
|
162
|
+
def display_info(self):
|
163
|
+
"""Gets the display_info of this CreateFavoriteReq.
|
164
|
+
|
165
|
+
展示信息。
|
166
|
+
|
167
|
+
:return: The display_info of this CreateFavoriteReq.
|
168
|
+
:rtype: str
|
169
|
+
"""
|
170
|
+
return self._display_info
|
171
|
+
|
172
|
+
@display_info.setter
|
173
|
+
def display_info(self, display_info):
|
174
|
+
"""Sets the display_info of this CreateFavoriteReq.
|
175
|
+
|
176
|
+
展示信息。
|
177
|
+
|
178
|
+
:param display_info: The display_info of this CreateFavoriteReq.
|
179
|
+
:type display_info: str
|
180
|
+
"""
|
181
|
+
self._display_info = display_info
|
182
|
+
|
183
|
+
@property
|
184
|
+
def location_info(self):
|
185
|
+
"""Gets the location_info of this CreateFavoriteReq.
|
186
|
+
|
187
|
+
定位信息。
|
188
|
+
|
189
|
+
:return: The location_info of this CreateFavoriteReq.
|
190
|
+
:rtype: str
|
191
|
+
"""
|
192
|
+
return self._location_info
|
193
|
+
|
194
|
+
@location_info.setter
|
195
|
+
def location_info(self, location_info):
|
196
|
+
"""Sets the location_info of this CreateFavoriteReq.
|
197
|
+
|
198
|
+
定位信息。
|
199
|
+
|
200
|
+
:param location_info: The location_info of this CreateFavoriteReq.
|
201
|
+
:type location_info: str
|
202
|
+
"""
|
203
|
+
self._location_info = location_info
|
204
|
+
|
205
|
+
def to_dict(self):
|
206
|
+
"""Returns the model properties as a dict"""
|
207
|
+
result = {}
|
208
|
+
|
209
|
+
for attr, _ in six.iteritems(self.openapi_types):
|
210
|
+
value = getattr(self, attr)
|
211
|
+
if isinstance(value, list):
|
212
|
+
result[attr] = list(map(
|
213
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
214
|
+
value
|
215
|
+
))
|
216
|
+
elif hasattr(value, "to_dict"):
|
217
|
+
result[attr] = value.to_dict()
|
218
|
+
elif isinstance(value, dict):
|
219
|
+
result[attr] = dict(map(
|
220
|
+
lambda item: (item[0], item[1].to_dict())
|
221
|
+
if hasattr(item[1], "to_dict") else item,
|
222
|
+
value.items()
|
223
|
+
))
|
224
|
+
else:
|
225
|
+
if attr in self.sensitive_list:
|
226
|
+
result[attr] = "****"
|
227
|
+
else:
|
228
|
+
result[attr] = value
|
229
|
+
|
230
|
+
return result
|
231
|
+
|
232
|
+
def to_str(self):
|
233
|
+
"""Returns the string representation of the model"""
|
234
|
+
import simplejson as json
|
235
|
+
if six.PY2:
|
236
|
+
import sys
|
237
|
+
reload(sys)
|
238
|
+
sys.setdefaultencoding("utf-8")
|
239
|
+
return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
|
240
|
+
|
241
|
+
def __repr__(self):
|
242
|
+
"""For `print`"""
|
243
|
+
return self.to_str()
|
244
|
+
|
245
|
+
def __eq__(self, other):
|
246
|
+
"""Returns true if both objects are equal"""
|
247
|
+
if not isinstance(other, CreateFavoriteReq):
|
248
|
+
return False
|
249
|
+
|
250
|
+
return self.__dict__ == other.__dict__
|
251
|
+
|
252
|
+
def __ne__(self, other):
|
253
|
+
"""Returns true if both objects are not equal"""
|
254
|
+
return not self == other
|