antchain-bot 1.12.24__py3-none-any.whl → 1.12.25__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.
- {antchain_bot-1.12.24.dist-info → antchain_bot-1.12.25.dist-info}/METADATA +1 -1
- antchain_bot-1.12.25.dist-info/RECORD +8 -0
- antchain_sdk_bot/__init__.py +1 -1
- antchain_sdk_bot/client.py +2 -2
- antchain_sdk_bot/models.py +21 -14
- antchain_bot-1.12.24.dist-info/RECORD +0 -8
- {antchain_bot-1.12.24.dist-info → antchain_bot-1.12.25.dist-info}/LICENSE +0 -0
- {antchain_bot-1.12.24.dist-info → antchain_bot-1.12.25.dist-info}/WHEEL +0 -0
- {antchain_bot-1.12.24.dist-info → antchain_bot-1.12.25.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
antchain_sdk_bot/__init__.py,sha256=k-ET2v8PmwASGYCPYg1qdngbnmC2_Xq5QlSJT5rfQ_g,23
|
|
2
|
+
antchain_sdk_bot/client.py,sha256=q9tvg-gAmRecZjqCzSEASm6wn75yM7JxYvwq6R9tGXw,633000
|
|
3
|
+
antchain_sdk_bot/models.py,sha256=ssjSOrsz5a3IPSWbnfsWO84WW0RsZ26G9SnUvQK6U7M,1635898
|
|
4
|
+
antchain_bot-1.12.25.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
+
antchain_bot-1.12.25.dist-info/METADATA,sha256=TWUa3QzhOHinuINck5Jyc2wOHpTDnFwRq8XGv6XtB28,1989
|
|
6
|
+
antchain_bot-1.12.25.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
7
|
+
antchain_bot-1.12.25.dist-info/top_level.txt,sha256=gpn1OPRhS8ydjW8IxqApJiA6jx285ves96g9kcJN9iA,17
|
|
8
|
+
antchain_bot-1.12.25.dist-info/RECORD,,
|
antchain_sdk_bot/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '1.12.
|
|
1
|
+
__version__ = '1.12.25'
|
antchain_sdk_bot/client.py
CHANGED
|
@@ -135,7 +135,7 @@ class Client:
|
|
|
135
135
|
'req_msg_id': AntchainUtils.get_nonce(),
|
|
136
136
|
'access_key': self._access_key_id,
|
|
137
137
|
'base_sdk_version': 'TeaSDK-2.0',
|
|
138
|
-
'sdk_version': '1.12.
|
|
138
|
+
'sdk_version': '1.12.25',
|
|
139
139
|
'_prod_code': 'BOT',
|
|
140
140
|
'_prod_channel': 'undefined'
|
|
141
141
|
}
|
|
@@ -239,7 +239,7 @@ class Client:
|
|
|
239
239
|
'req_msg_id': AntchainUtils.get_nonce(),
|
|
240
240
|
'access_key': self._access_key_id,
|
|
241
241
|
'base_sdk_version': 'TeaSDK-2.0',
|
|
242
|
-
'sdk_version': '1.12.
|
|
242
|
+
'sdk_version': '1.12.25',
|
|
243
243
|
'_prod_code': 'BOT',
|
|
244
244
|
'_prod_channel': 'undefined'
|
|
245
245
|
}
|
antchain_sdk_bot/models.py
CHANGED
|
@@ -28932,9 +28932,10 @@ class CreateElectrocarApplycarkeycertificateResponse(TeaModel):
|
|
|
28932
28932
|
req_msg_id: str = None,
|
|
28933
28933
|
result_code: str = None,
|
|
28934
28934
|
result_msg: str = None,
|
|
28935
|
-
|
|
28936
|
-
mqtt_content: str = None,
|
|
28935
|
+
tuid: str = None,
|
|
28937
28936
|
device_did: str = None,
|
|
28937
|
+
mqtt_content: str = None,
|
|
28938
|
+
car_key_init_data: str = None,
|
|
28938
28939
|
success: bool = None,
|
|
28939
28940
|
):
|
|
28940
28941
|
# 请求唯一ID,用于链路跟踪和问题排查
|
|
@@ -28943,12 +28944,14 @@ class CreateElectrocarApplycarkeycertificateResponse(TeaModel):
|
|
|
28943
28944
|
self.result_code = result_code
|
|
28944
28945
|
# 异常信息的文本描述
|
|
28945
28946
|
self.result_msg = result_msg
|
|
28946
|
-
#
|
|
28947
|
-
self.
|
|
28948
|
-
# 三元组+连接实例id
|
|
28949
|
-
self.mqtt_content = mqtt_content
|
|
28947
|
+
# sn
|
|
28948
|
+
self.tuid = tuid
|
|
28950
28949
|
# deviceDid
|
|
28951
28950
|
self.device_did = device_did
|
|
28951
|
+
# 三元组+连接实例id
|
|
28952
|
+
self.mqtt_content = mqtt_content
|
|
28953
|
+
# 凭证接口返回参数
|
|
28954
|
+
self.car_key_init_data = car_key_init_data
|
|
28952
28955
|
# 成功/失败
|
|
28953
28956
|
self.success = success
|
|
28954
28957
|
|
|
@@ -28967,12 +28970,14 @@ class CreateElectrocarApplycarkeycertificateResponse(TeaModel):
|
|
|
28967
28970
|
result['result_code'] = self.result_code
|
|
28968
28971
|
if self.result_msg is not None:
|
|
28969
28972
|
result['result_msg'] = self.result_msg
|
|
28970
|
-
if self.
|
|
28971
|
-
result['
|
|
28972
|
-
if self.mqtt_content is not None:
|
|
28973
|
-
result['mqtt_content'] = self.mqtt_content
|
|
28973
|
+
if self.tuid is not None:
|
|
28974
|
+
result['tuid'] = self.tuid
|
|
28974
28975
|
if self.device_did is not None:
|
|
28975
28976
|
result['device_did'] = self.device_did
|
|
28977
|
+
if self.mqtt_content is not None:
|
|
28978
|
+
result['mqtt_content'] = self.mqtt_content
|
|
28979
|
+
if self.car_key_init_data is not None:
|
|
28980
|
+
result['car_key_init_data'] = self.car_key_init_data
|
|
28976
28981
|
if self.success is not None:
|
|
28977
28982
|
result['success'] = self.success
|
|
28978
28983
|
return result
|
|
@@ -28985,12 +28990,14 @@ class CreateElectrocarApplycarkeycertificateResponse(TeaModel):
|
|
|
28985
28990
|
self.result_code = m.get('result_code')
|
|
28986
28991
|
if m.get('result_msg') is not None:
|
|
28987
28992
|
self.result_msg = m.get('result_msg')
|
|
28988
|
-
if m.get('
|
|
28989
|
-
self.
|
|
28990
|
-
if m.get('mqtt_content') is not None:
|
|
28991
|
-
self.mqtt_content = m.get('mqtt_content')
|
|
28993
|
+
if m.get('tuid') is not None:
|
|
28994
|
+
self.tuid = m.get('tuid')
|
|
28992
28995
|
if m.get('device_did') is not None:
|
|
28993
28996
|
self.device_did = m.get('device_did')
|
|
28997
|
+
if m.get('mqtt_content') is not None:
|
|
28998
|
+
self.mqtt_content = m.get('mqtt_content')
|
|
28999
|
+
if m.get('car_key_init_data') is not None:
|
|
29000
|
+
self.car_key_init_data = m.get('car_key_init_data')
|
|
28994
29001
|
if m.get('success') is not None:
|
|
28995
29002
|
self.success = m.get('success')
|
|
28996
29003
|
return self
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
antchain_sdk_bot/__init__.py,sha256=6AG9hizTQXenshnNzcCT4zK4MGRjv-j5EI0d_rHL9RA,23
|
|
2
|
-
antchain_sdk_bot/client.py,sha256=GaD4sbLTfnFzBUywiWJ445QHTNG_0C_SX_ar2-7LHfw,633000
|
|
3
|
-
antchain_sdk_bot/models.py,sha256=w4chllZjhY9W2bcKGuhmV0j2aMbAi7e29ksfa_Mb_7o,1635685
|
|
4
|
-
antchain_bot-1.12.24.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
-
antchain_bot-1.12.24.dist-info/METADATA,sha256=35GL7fRnMQge_W833CRezwXsrKG4GyfLomjx-DXPN8U,1989
|
|
6
|
-
antchain_bot-1.12.24.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
7
|
-
antchain_bot-1.12.24.dist-info/top_level.txt,sha256=gpn1OPRhS8ydjW8IxqApJiA6jx285ves96g9kcJN9iA,17
|
|
8
|
-
antchain_bot-1.12.24.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|