tencentcloud-sdk-python-ocr 3.0.1353__tar.gz → 3.0.1355__tar.gz

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.
Files changed (16) hide show
  1. {tencentcloud-sdk-python-ocr-3.0.1353 → tencentcloud-sdk-python-ocr-3.0.1355}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-ocr-3.0.1353 → tencentcloud-sdk-python-ocr-3.0.1355}/setup.py +1 -1
  3. {tencentcloud-sdk-python-ocr-3.0.1353 → tencentcloud-sdk-python-ocr-3.0.1355}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-ocr-3.0.1353 → tencentcloud-sdk-python-ocr-3.0.1355}/tencentcloud/ocr/v20181119/models.py +15 -0
  5. {tencentcloud-sdk-python-ocr-3.0.1353 → tencentcloud-sdk-python-ocr-3.0.1355}/tencentcloud_sdk_python_ocr.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-ocr-3.0.1355/tencentcloud_sdk_python_ocr.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-ocr-3.0.1353/tencentcloud_sdk_python_ocr.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-ocr-3.0.1353 → tencentcloud-sdk-python-ocr-3.0.1355}/README.rst +0 -0
  9. {tencentcloud-sdk-python-ocr-3.0.1353 → tencentcloud-sdk-python-ocr-3.0.1355}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-ocr-3.0.1353 → tencentcloud-sdk-python-ocr-3.0.1355}/tencentcloud/ocr/__init__.py +0 -0
  11. {tencentcloud-sdk-python-ocr-3.0.1353 → tencentcloud-sdk-python-ocr-3.0.1355}/tencentcloud/ocr/v20181119/__init__.py +0 -0
  12. {tencentcloud-sdk-python-ocr-3.0.1353 → tencentcloud-sdk-python-ocr-3.0.1355}/tencentcloud/ocr/v20181119/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-ocr-3.0.1353 → tencentcloud-sdk-python-ocr-3.0.1355}/tencentcloud/ocr/v20181119/ocr_client.py +0 -0
  14. {tencentcloud-sdk-python-ocr-3.0.1353 → tencentcloud-sdk-python-ocr-3.0.1355}/tencentcloud_sdk_python_ocr.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-ocr-3.0.1353 → tencentcloud-sdk-python-ocr-3.0.1355}/tencentcloud_sdk_python_ocr.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-ocr-3.0.1353 → tencentcloud-sdk-python-ocr-3.0.1355}/tencentcloud_sdk_python_ocr.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-ocr
3
- Version: 3.0.1353
3
+ Version: 3.0.1355
4
4
  Summary: Tencent Cloud Ocr SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-ocr',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1353"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1355"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Ocr SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1353'
17
+ __version__ = '3.0.1355'
@@ -12233,6 +12233,8 @@ class IDCardInfoResult(AbstractModel):
12233
12233
  :type ImageUrl: str
12234
12234
  :param _PortraitUrl: 身份证头像照片的地址(人像面)
12235
12235
  :type PortraitUrl: str
12236
+ :param _IntErrorCode: 整型错误码
12237
+ :type IntErrorCode: int
12236
12238
  """
12237
12239
  self._WarnCodes = None
12238
12240
  self._Address = None
@@ -12248,6 +12250,7 @@ class IDCardInfoResult(AbstractModel):
12248
12250
  self._ErrorMessage = None
12249
12251
  self._ImageUrl = None
12250
12252
  self._PortraitUrl = None
12253
+ self._IntErrorCode = None
12251
12254
 
12252
12255
  @property
12253
12256
  def WarnCodes(self):
@@ -12415,6 +12418,17 @@ class IDCardInfoResult(AbstractModel):
12415
12418
  def PortraitUrl(self, PortraitUrl):
12416
12419
  self._PortraitUrl = PortraitUrl
12417
12420
 
12421
+ @property
12422
+ def IntErrorCode(self):
12423
+ """整型错误码
12424
+ :rtype: int
12425
+ """
12426
+ return self._IntErrorCode
12427
+
12428
+ @IntErrorCode.setter
12429
+ def IntErrorCode(self, IntErrorCode):
12430
+ self._IntErrorCode = IntErrorCode
12431
+
12418
12432
 
12419
12433
  def _deserialize(self, params):
12420
12434
  self._WarnCodes = params.get("WarnCodes")
@@ -12431,6 +12445,7 @@ class IDCardInfoResult(AbstractModel):
12431
12445
  self._ErrorMessage = params.get("ErrorMessage")
12432
12446
  self._ImageUrl = params.get("ImageUrl")
12433
12447
  self._PortraitUrl = params.get("PortraitUrl")
12448
+ self._IntErrorCode = params.get("IntErrorCode")
12434
12449
  memeber_set = set(params.keys())
12435
12450
  for name, value in vars(self).items():
12436
12451
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-ocr
3
- Version: 3.0.1353
3
+ Version: 3.0.1355
4
4
  Summary: Tencent Cloud Ocr SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1355
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1353