huaweicloudsdkeihealth 3.1.95__py2.py3-none-any.whl → 3.1.97__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/model/list_drug_database_response.py +32 -3
- {huaweicloudsdkeihealth-3.1.95.dist-info → huaweicloudsdkeihealth-3.1.97.dist-info}/METADATA +2 -2
- {huaweicloudsdkeihealth-3.1.95.dist-info → huaweicloudsdkeihealth-3.1.97.dist-info}/RECORD +6 -6
- {huaweicloudsdkeihealth-3.1.95.dist-info → huaweicloudsdkeihealth-3.1.97.dist-info}/LICENSE +0 -0
- {huaweicloudsdkeihealth-3.1.95.dist-info → huaweicloudsdkeihealth-3.1.97.dist-info}/WHEEL +0 -0
- {huaweicloudsdkeihealth-3.1.95.dist-info → huaweicloudsdkeihealth-3.1.97.dist-info}/top_level.txt +0 -0
@@ -19,15 +19,17 @@ class ListDrugDatabaseResponse(SdkResponse):
|
|
19
19
|
|
20
20
|
openapi_types = {
|
21
21
|
'databases': 'list[DrugDatabaseDto]',
|
22
|
-
'count': 'int'
|
22
|
+
'count': 'int',
|
23
|
+
'cur_user_count': 'int'
|
23
24
|
}
|
24
25
|
|
25
26
|
attribute_map = {
|
26
27
|
'databases': 'databases',
|
27
|
-
'count': 'count'
|
28
|
+
'count': 'count',
|
29
|
+
'cur_user_count': 'cur_user_count'
|
28
30
|
}
|
29
31
|
|
30
|
-
def __init__(self, databases=None, count=None):
|
32
|
+
def __init__(self, databases=None, count=None, cur_user_count=None):
|
31
33
|
"""ListDrugDatabaseResponse
|
32
34
|
|
33
35
|
The model defined in huaweicloud sdk
|
@@ -36,18 +38,23 @@ class ListDrugDatabaseResponse(SdkResponse):
|
|
36
38
|
:type databases: list[:class:`huaweicloudsdkeihealth.v1.DrugDatabaseDto`]
|
37
39
|
:param count: 数据库总数
|
38
40
|
:type count: int
|
41
|
+
:param cur_user_count: 当前用户数据库总数
|
42
|
+
:type cur_user_count: int
|
39
43
|
"""
|
40
44
|
|
41
45
|
super(ListDrugDatabaseResponse, self).__init__()
|
42
46
|
|
43
47
|
self._databases = None
|
44
48
|
self._count = None
|
49
|
+
self._cur_user_count = None
|
45
50
|
self.discriminator = None
|
46
51
|
|
47
52
|
if databases is not None:
|
48
53
|
self.databases = databases
|
49
54
|
if count is not None:
|
50
55
|
self.count = count
|
56
|
+
if cur_user_count is not None:
|
57
|
+
self.cur_user_count = cur_user_count
|
51
58
|
|
52
59
|
@property
|
53
60
|
def databases(self):
|
@@ -93,6 +100,28 @@ class ListDrugDatabaseResponse(SdkResponse):
|
|
93
100
|
"""
|
94
101
|
self._count = count
|
95
102
|
|
103
|
+
@property
|
104
|
+
def cur_user_count(self):
|
105
|
+
"""Gets the cur_user_count of this ListDrugDatabaseResponse.
|
106
|
+
|
107
|
+
当前用户数据库总数
|
108
|
+
|
109
|
+
:return: The cur_user_count of this ListDrugDatabaseResponse.
|
110
|
+
:rtype: int
|
111
|
+
"""
|
112
|
+
return self._cur_user_count
|
113
|
+
|
114
|
+
@cur_user_count.setter
|
115
|
+
def cur_user_count(self, cur_user_count):
|
116
|
+
"""Sets the cur_user_count of this ListDrugDatabaseResponse.
|
117
|
+
|
118
|
+
当前用户数据库总数
|
119
|
+
|
120
|
+
:param cur_user_count: The cur_user_count of this ListDrugDatabaseResponse.
|
121
|
+
:type cur_user_count: int
|
122
|
+
"""
|
123
|
+
self._cur_user_count = cur_user_count
|
124
|
+
|
96
125
|
def to_dict(self):
|
97
126
|
"""Returns the model properties as a dict"""
|
98
127
|
result = {}
|
{huaweicloudsdkeihealth-3.1.95.dist-info → huaweicloudsdkeihealth-3.1.97.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: huaweicloudsdkeihealth
|
3
|
-
Version: 3.1.
|
3
|
+
Version: 3.1.97
|
4
4
|
Summary: eiHealth
|
5
5
|
Home-page: https://github.com/huaweicloud/huaweicloud-sdk-python-v3
|
6
6
|
Author: HuaweiCloud SDK
|
@@ -22,6 +22,6 @@ Classifier: Topic :: Software Development
|
|
22
22
|
Requires-Python: >=2.7,!=3.0.*,!=3.1.*,!=3.2.*
|
23
23
|
Description-Content-Type: text/markdown
|
24
24
|
License-File: LICENSE
|
25
|
-
Requires-Dist: huaweicloudsdkcore >=3.1.
|
25
|
+
Requires-Dist: huaweicloudsdkcore >=3.1.97
|
26
26
|
|
27
27
|
See detailed information in [huaweicloud-sdk-python-v3](https://github.com/huaweicloud/huaweicloud-sdk-python-v3).
|
@@ -449,7 +449,7 @@ huaweicloudsdkeihealth/v1/model/list_database_resource_flavor_response.py,sha256
|
|
449
449
|
huaweicloudsdkeihealth/v1/model/list_database_resource_request.py,sha256=fetyhmRicMBmWo7dtYtXESentX_DfOn6G2iKnS2KuTs,2339
|
450
450
|
huaweicloudsdkeihealth/v1/model/list_database_resource_response.py,sha256=pzFZUT2ltPbyjJPNGifIcB8oq4lT5TPYEIeX8nrgCLw,5201
|
451
451
|
huaweicloudsdkeihealth/v1/model/list_drug_database_request.py,sha256=pfI-JYcchkr5TBqFCFZ3glOZNUKCWIttA-r_UylrrO0,7623
|
452
|
-
huaweicloudsdkeihealth/v1/model/list_drug_database_response.py,sha256=
|
452
|
+
huaweicloudsdkeihealth/v1/model/list_drug_database_response.py,sha256=7qcWO5VC82hFwElp3vhBpdpbCWGGnj_psS1wEcBeL48,5116
|
453
453
|
huaweicloudsdkeihealth/v1/model/list_drug_job_request.py,sha256=SKxT5Fyk-y_PwDCGUL3hv8dlNJNCter02T2jLZMG7_o,15492
|
454
454
|
huaweicloudsdkeihealth/v1/model/list_drug_job_response.py,sha256=aNm2JAtSUuToGcqwOgPU76GPvQ4_dHYBQ7IyfpJprpA,3941
|
455
455
|
huaweicloudsdkeihealth/v1/model/list_drug_model_request.py,sha256=PP-YqPOVcwhXfW9Q7fucxH_2Bb-b9_2hyTmjy7DJfz0,13276
|
@@ -1008,8 +1008,8 @@ huaweicloudsdkeihealth/v2/model/smiles.py,sha256=Knee_wJ19ixWYsx59Fp8kreax74VfD6
|
|
1008
1008
|
huaweicloudsdkeihealth/v2/model/value_range.py,sha256=pJ-AqFnamCj3lZxEfh54rPdvUduEtqvqmMm0CMAXNTI,5460
|
1009
1009
|
huaweicloudsdkeihealth/v2/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1010
1010
|
huaweicloudsdkeihealth/v2/region/eihealth_region.py,sha256=QbxjdzPTE_Sedf1c02Rbn3g9JFLDOtHjJZdxtKefdSs,1266
|
1011
|
-
huaweicloudsdkeihealth-3.1.
|
1012
|
-
huaweicloudsdkeihealth-3.1.
|
1013
|
-
huaweicloudsdkeihealth-3.1.
|
1014
|
-
huaweicloudsdkeihealth-3.1.
|
1015
|
-
huaweicloudsdkeihealth-3.1.
|
1011
|
+
huaweicloudsdkeihealth-3.1.97.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
|
1012
|
+
huaweicloudsdkeihealth-3.1.97.dist-info/METADATA,sha256=8f3oILetkxhO-AxWed1W4RQvN2VPZ-imFhjMGz51XCc,1149
|
1013
|
+
huaweicloudsdkeihealth-3.1.97.dist-info/WHEEL,sha256=DZajD4pwLWue70CAfc7YaxT1wLUciNBvN_TTcvXpltE,110
|
1014
|
+
huaweicloudsdkeihealth-3.1.97.dist-info/top_level.txt,sha256=Xr25kDcX0TKxsWwDM_9bVOpMpaOXSxNNSvkh_ZDAeq8,23
|
1015
|
+
huaweicloudsdkeihealth-3.1.97.dist-info/RECORD,,
|
File without changes
|
File without changes
|
{huaweicloudsdkeihealth-3.1.95.dist-info → huaweicloudsdkeihealth-3.1.97.dist-info}/top_level.txt
RENAMED
File without changes
|