Skip to content

Commit d5d2182

Browse files
committed
publish jdcloud-sdk-python 1.6.76
1 parent cd80c60 commit d5d2182

5 files changed

Lines changed: 14 additions & 7 deletions

File tree

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
# 更新历史 #
22
API版本:1.0.0
3+
4+
1.0.3:
5+
Date: 2020-07-16
6+
更新: 将打款验证的chekInfo 的 paymentAmount 参数类型由 float 改为 string

jdcloud_sdk/services/cloudauth/client/CloudauthClient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ def __init__(self, credential, config=None, logger=None):
2626
if config is None:
2727
config = Config('cloudauth.jdcloud-api.com')
2828

29-
super(CloudauthClient, self).__init__(credential, config, 'cloudauth', '1.0.0', logger)
29+
super(CloudauthClient, self).__init__(credential, config, 'cloudauth', '1.0.3', logger)

jdcloud_sdk/services/cloudauth/models/AccountInfo.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,9 @@
1919

2020
class AccountInfo(object):
2121

22-
def __init__(self, orgName, bankCardNum, bankName, branchBankName, idCard=None, bankCode=None, cityCode=None, provinceCode=None):
22+
def __init__(self, orgName, bankCardNum, bankName, branchBankName, bankCode=None, cityCode=None, provinceCode=None):
2323
"""
2424
:param orgName: 组织名称
25-
:param idCard: (Optional) 身份证号码
2625
:param bankCardNum: 银行卡号
2726
:param bankName: 银行名称
2827
:param branchBankName: 支行名称
@@ -32,7 +31,6 @@ def __init__(self, orgName, bankCardNum, bankName, branchBankName, idCard=None,
3231
"""
3332

3433
self.orgName = orgName
35-
self.idCard = idCard
3634
self.bankCardNum = bankCardNum
3735
self.bankName = bankName
3836
self.branchBankName = branchBankName

jdcloud_sdk/services/cloudauth/models/AuthInfo.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,13 @@ def __init__(self, success, hasException, code, message, detail, ):
2424
:param success: 认证结果true 成功, false 失败
2525
:param hasException: 是否有异常 true 有异常, false 无异常
2626
:param code: 认证结果状态码
27-
:param message: 认证结果
28-
:param detail:
27+
:param message: 1. 认证结果信息
28+
2. 查询结果信息
29+
3. 状态码信息
30+
31+
:param detail: 1. 认证结果信息
32+
2. 查询结果信息
33+
2934
"""
3035

3136
self.success = success

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name='jdcloud_sdk',
12-
version="1.6.75",
12+
version="1.6.76",
1313
long_description=long_description,
1414
long_description_content_type="text/markdown",
1515
author='JDCloud API Gateway Team',

0 commit comments

Comments
 (0)