tencentcloud-sdk-python-ocr 3.0.1176__tar.gz → 3.0.1180__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.
- {tencentcloud-sdk-python-ocr-3.0.1176 → tencentcloud-sdk-python-ocr-3.0.1180}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-ocr-3.0.1176 → tencentcloud-sdk-python-ocr-3.0.1180}/setup.py +1 -1
- {tencentcloud-sdk-python-ocr-3.0.1176 → tencentcloud-sdk-python-ocr-3.0.1180}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-ocr-3.0.1176 → tencentcloud-sdk-python-ocr-3.0.1180}/tencentcloud/ocr/v20181119/models.py +24 -0
- {tencentcloud-sdk-python-ocr-3.0.1176 → tencentcloud-sdk-python-ocr-3.0.1180}/tencentcloud_sdk_python_ocr.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-ocr-3.0.1180/tencentcloud_sdk_python_ocr.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-ocr-3.0.1176/tencentcloud_sdk_python_ocr.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-ocr-3.0.1176 → tencentcloud-sdk-python-ocr-3.0.1180}/README.rst +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1176 → tencentcloud-sdk-python-ocr-3.0.1180}/setup.cfg +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1176 → tencentcloud-sdk-python-ocr-3.0.1180}/tencentcloud/ocr/__init__.py +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1176 → tencentcloud-sdk-python-ocr-3.0.1180}/tencentcloud/ocr/v20181119/__init__.py +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1176 → tencentcloud-sdk-python-ocr-3.0.1180}/tencentcloud/ocr/v20181119/errorcodes.py +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1176 → tencentcloud-sdk-python-ocr-3.0.1180}/tencentcloud/ocr/v20181119/ocr_client.py +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1176 → tencentcloud-sdk-python-ocr-3.0.1180}/tencentcloud_sdk_python_ocr.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1176 → tencentcloud-sdk-python-ocr-3.0.1180}/tencentcloud_sdk_python_ocr.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1176 → tencentcloud-sdk-python-ocr-3.0.1180}/tencentcloud_sdk_python_ocr.egg-info/top_level.txt +0 -0
|
@@ -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.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1180"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Ocr SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -1469,10 +1469,13 @@ class BizLicenseOCRRequest(AbstractModel):
|
|
|
1469
1469
|
:type ImageUrl: str
|
|
1470
1470
|
:param _EnableCopyWarn: 是否返回告警码,默认为false
|
|
1471
1471
|
:type EnableCopyWarn: bool
|
|
1472
|
+
:param _EnablePeriodComplete: 是否返回自动拼接的有效期,默认为true
|
|
1473
|
+
:type EnablePeriodComplete: bool
|
|
1472
1474
|
"""
|
|
1473
1475
|
self._ImageBase64 = None
|
|
1474
1476
|
self._ImageUrl = None
|
|
1475
1477
|
self._EnableCopyWarn = None
|
|
1478
|
+
self._EnablePeriodComplete = None
|
|
1476
1479
|
|
|
1477
1480
|
@property
|
|
1478
1481
|
def ImageBase64(self):
|
|
@@ -1498,11 +1501,20 @@ class BizLicenseOCRRequest(AbstractModel):
|
|
|
1498
1501
|
def EnableCopyWarn(self, EnableCopyWarn):
|
|
1499
1502
|
self._EnableCopyWarn = EnableCopyWarn
|
|
1500
1503
|
|
|
1504
|
+
@property
|
|
1505
|
+
def EnablePeriodComplete(self):
|
|
1506
|
+
return self._EnablePeriodComplete
|
|
1507
|
+
|
|
1508
|
+
@EnablePeriodComplete.setter
|
|
1509
|
+
def EnablePeriodComplete(self, EnablePeriodComplete):
|
|
1510
|
+
self._EnablePeriodComplete = EnablePeriodComplete
|
|
1511
|
+
|
|
1501
1512
|
|
|
1502
1513
|
def _deserialize(self, params):
|
|
1503
1514
|
self._ImageBase64 = params.get("ImageBase64")
|
|
1504
1515
|
self._ImageUrl = params.get("ImageUrl")
|
|
1505
1516
|
self._EnableCopyWarn = params.get("EnableCopyWarn")
|
|
1517
|
+
self._EnablePeriodComplete = params.get("EnablePeriodComplete")
|
|
1506
1518
|
memeber_set = set(params.keys())
|
|
1507
1519
|
for name, value in vars(self).items():
|
|
1508
1520
|
property_name = name[1:]
|
|
@@ -25199,6 +25211,8 @@ class TrainTicket(AbstractModel):
|
|
|
25199
25211
|
:type ReimburseOnlyMark: int
|
|
25200
25212
|
:param _RefundMark: 是否有退票费标识(0:没有,1:有)
|
|
25201
25213
|
:type RefundMark: int
|
|
25214
|
+
:param _TicketChangeMark: 是否有改签费标识(0:没有,1:有)
|
|
25215
|
+
:type TicketChangeMark: int
|
|
25202
25216
|
"""
|
|
25203
25217
|
self._Title = None
|
|
25204
25218
|
self._Number = None
|
|
@@ -25225,6 +25239,7 @@ class TrainTicket(AbstractModel):
|
|
|
25225
25239
|
self._QRCodeMark = None
|
|
25226
25240
|
self._ReimburseOnlyMark = None
|
|
25227
25241
|
self._RefundMark = None
|
|
25242
|
+
self._TicketChangeMark = None
|
|
25228
25243
|
|
|
25229
25244
|
@property
|
|
25230
25245
|
def Title(self):
|
|
@@ -25426,6 +25441,14 @@ class TrainTicket(AbstractModel):
|
|
|
25426
25441
|
def RefundMark(self, RefundMark):
|
|
25427
25442
|
self._RefundMark = RefundMark
|
|
25428
25443
|
|
|
25444
|
+
@property
|
|
25445
|
+
def TicketChangeMark(self):
|
|
25446
|
+
return self._TicketChangeMark
|
|
25447
|
+
|
|
25448
|
+
@TicketChangeMark.setter
|
|
25449
|
+
def TicketChangeMark(self, TicketChangeMark):
|
|
25450
|
+
self._TicketChangeMark = TicketChangeMark
|
|
25451
|
+
|
|
25429
25452
|
|
|
25430
25453
|
def _deserialize(self, params):
|
|
25431
25454
|
self._Title = params.get("Title")
|
|
@@ -25453,6 +25476,7 @@ class TrainTicket(AbstractModel):
|
|
|
25453
25476
|
self._QRCodeMark = params.get("QRCodeMark")
|
|
25454
25477
|
self._ReimburseOnlyMark = params.get("ReimburseOnlyMark")
|
|
25455
25478
|
self._RefundMark = params.get("RefundMark")
|
|
25479
|
+
self._TicketChangeMark = params.get("TicketChangeMark")
|
|
25456
25480
|
memeber_set = set(params.keys())
|
|
25457
25481
|
for name, value in vars(self).items():
|
|
25458
25482
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1180
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1176
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|