tencentcloud-sdk-python-ocr 3.0.1322__tar.gz → 3.0.1324__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.1322 → tencentcloud-sdk-python-ocr-3.0.1324}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-ocr-3.0.1322 → tencentcloud-sdk-python-ocr-3.0.1324}/setup.py +1 -1
- {tencentcloud-sdk-python-ocr-3.0.1322 → tencentcloud-sdk-python-ocr-3.0.1324}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-ocr-3.0.1322 → tencentcloud-sdk-python-ocr-3.0.1324}/tencentcloud/ocr/v20181119/models.py +250 -2
- {tencentcloud-sdk-python-ocr-3.0.1322 → tencentcloud-sdk-python-ocr-3.0.1324}/tencentcloud_sdk_python_ocr.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-ocr-3.0.1324/tencentcloud_sdk_python_ocr.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-ocr-3.0.1322/tencentcloud_sdk_python_ocr.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-ocr-3.0.1322 → tencentcloud-sdk-python-ocr-3.0.1324}/README.rst +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1322 → tencentcloud-sdk-python-ocr-3.0.1324}/setup.cfg +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1322 → tencentcloud-sdk-python-ocr-3.0.1324}/tencentcloud/ocr/__init__.py +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1322 → tencentcloud-sdk-python-ocr-3.0.1324}/tencentcloud/ocr/v20181119/__init__.py +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1322 → tencentcloud-sdk-python-ocr-3.0.1324}/tencentcloud/ocr/v20181119/errorcodes.py +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1322 → tencentcloud-sdk-python-ocr-3.0.1324}/tencentcloud/ocr/v20181119/ocr_client.py +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1322 → tencentcloud-sdk-python-ocr-3.0.1324}/tencentcloud_sdk_python_ocr.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1322 → tencentcloud-sdk-python-ocr-3.0.1324}/tencentcloud_sdk_python_ocr.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1322 → tencentcloud-sdk-python-ocr-3.0.1324}/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.1324"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Ocr SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -678,7 +678,7 @@ class AirTransport(AbstractModel):
|
|
|
678
678
|
:type DomesticInternationalTag: str
|
|
679
679
|
:param _DateStart: 客票生效日期
|
|
680
680
|
:type DateStart: str
|
|
681
|
-
:param _DateEnd:
|
|
681
|
+
:param _DateEnd: 有效截止日期
|
|
682
682
|
:type DateEnd: str
|
|
683
683
|
:param _Endorsement: 签注
|
|
684
684
|
:type Endorsement: str
|
|
@@ -955,7 +955,7 @@ class AirTransport(AbstractModel):
|
|
|
955
955
|
|
|
956
956
|
@property
|
|
957
957
|
def DateEnd(self):
|
|
958
|
-
"""
|
|
958
|
+
"""有效截止日期
|
|
959
959
|
:rtype: str
|
|
960
960
|
"""
|
|
961
961
|
return self._DateEnd
|
|
@@ -4271,6 +4271,62 @@ class CreateAIFormTaskResponse(AbstractModel):
|
|
|
4271
4271
|
self._RequestId = params.get("RequestId")
|
|
4272
4272
|
|
|
4273
4273
|
|
|
4274
|
+
class CustomsPaymentReceipt(AbstractModel):
|
|
4275
|
+
"""海关缴款书
|
|
4276
|
+
|
|
4277
|
+
"""
|
|
4278
|
+
|
|
4279
|
+
def __init__(self):
|
|
4280
|
+
r"""
|
|
4281
|
+
:param _Title: 发票名称
|
|
4282
|
+
:type Title: str
|
|
4283
|
+
:param _Content: 识别出的字段名称(关键字),支持以下字段: 税号 、纳税人识别号 、纳税人名称 、金额合计大写 、金额合计小写 、填发日期 、税务机关 、填票人。 示例值:纳税人识别号
|
|
4284
|
+
:type Content: list of OtherInvoiceItem
|
|
4285
|
+
"""
|
|
4286
|
+
self._Title = None
|
|
4287
|
+
self._Content = None
|
|
4288
|
+
|
|
4289
|
+
@property
|
|
4290
|
+
def Title(self):
|
|
4291
|
+
"""发票名称
|
|
4292
|
+
:rtype: str
|
|
4293
|
+
"""
|
|
4294
|
+
return self._Title
|
|
4295
|
+
|
|
4296
|
+
@Title.setter
|
|
4297
|
+
def Title(self, Title):
|
|
4298
|
+
self._Title = Title
|
|
4299
|
+
|
|
4300
|
+
@property
|
|
4301
|
+
def Content(self):
|
|
4302
|
+
"""识别出的字段名称(关键字),支持以下字段: 税号 、纳税人识别号 、纳税人名称 、金额合计大写 、金额合计小写 、填发日期 、税务机关 、填票人。 示例值:纳税人识别号
|
|
4303
|
+
:rtype: list of OtherInvoiceItem
|
|
4304
|
+
"""
|
|
4305
|
+
return self._Content
|
|
4306
|
+
|
|
4307
|
+
@Content.setter
|
|
4308
|
+
def Content(self, Content):
|
|
4309
|
+
self._Content = Content
|
|
4310
|
+
|
|
4311
|
+
|
|
4312
|
+
def _deserialize(self, params):
|
|
4313
|
+
self._Title = params.get("Title")
|
|
4314
|
+
if params.get("Content") is not None:
|
|
4315
|
+
self._Content = []
|
|
4316
|
+
for item in params.get("Content"):
|
|
4317
|
+
obj = OtherInvoiceItem()
|
|
4318
|
+
obj._deserialize(item)
|
|
4319
|
+
self._Content.append(obj)
|
|
4320
|
+
memeber_set = set(params.keys())
|
|
4321
|
+
for name, value in vars(self).items():
|
|
4322
|
+
property_name = name[1:]
|
|
4323
|
+
if property_name in memeber_set:
|
|
4324
|
+
memeber_set.remove(property_name)
|
|
4325
|
+
if len(memeber_set) > 0:
|
|
4326
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
4327
|
+
|
|
4328
|
+
|
|
4329
|
+
|
|
4274
4330
|
class DetailInformationOfAirTicketTupleList(AbstractModel):
|
|
4275
4331
|
"""机票详细信息元组
|
|
4276
4332
|
|
|
@@ -9640,6 +9696,10 @@ class FlightItemInfo(AbstractModel):
|
|
|
9640
9696
|
:type FareBasis: str
|
|
9641
9697
|
:param _Allow: 免费行李额
|
|
9642
9698
|
:type Allow: str
|
|
9699
|
+
:param _DateStart: 客票生效日期
|
|
9700
|
+
:type DateStart: str
|
|
9701
|
+
:param _DateEnd: 有效截止日期
|
|
9702
|
+
:type DateEnd: str
|
|
9643
9703
|
"""
|
|
9644
9704
|
self._TerminalGetOn = None
|
|
9645
9705
|
self._TerminalGetOff = None
|
|
@@ -9650,6 +9710,8 @@ class FlightItemInfo(AbstractModel):
|
|
|
9650
9710
|
self._TimeGetOn = None
|
|
9651
9711
|
self._FareBasis = None
|
|
9652
9712
|
self._Allow = None
|
|
9713
|
+
self._DateStart = None
|
|
9714
|
+
self._DateEnd = None
|
|
9653
9715
|
|
|
9654
9716
|
@property
|
|
9655
9717
|
def TerminalGetOn(self):
|
|
@@ -9750,6 +9812,28 @@ class FlightItemInfo(AbstractModel):
|
|
|
9750
9812
|
def Allow(self, Allow):
|
|
9751
9813
|
self._Allow = Allow
|
|
9752
9814
|
|
|
9815
|
+
@property
|
|
9816
|
+
def DateStart(self):
|
|
9817
|
+
"""客票生效日期
|
|
9818
|
+
:rtype: str
|
|
9819
|
+
"""
|
|
9820
|
+
return self._DateStart
|
|
9821
|
+
|
|
9822
|
+
@DateStart.setter
|
|
9823
|
+
def DateStart(self, DateStart):
|
|
9824
|
+
self._DateStart = DateStart
|
|
9825
|
+
|
|
9826
|
+
@property
|
|
9827
|
+
def DateEnd(self):
|
|
9828
|
+
"""有效截止日期
|
|
9829
|
+
:rtype: str
|
|
9830
|
+
"""
|
|
9831
|
+
return self._DateEnd
|
|
9832
|
+
|
|
9833
|
+
@DateEnd.setter
|
|
9834
|
+
def DateEnd(self, DateEnd):
|
|
9835
|
+
self._DateEnd = DateEnd
|
|
9836
|
+
|
|
9753
9837
|
|
|
9754
9838
|
def _deserialize(self, params):
|
|
9755
9839
|
self._TerminalGetOn = params.get("TerminalGetOn")
|
|
@@ -9761,6 +9845,8 @@ class FlightItemInfo(AbstractModel):
|
|
|
9761
9845
|
self._TimeGetOn = params.get("TimeGetOn")
|
|
9762
9846
|
self._FareBasis = params.get("FareBasis")
|
|
9763
9847
|
self._Allow = params.get("Allow")
|
|
9848
|
+
self._DateStart = params.get("DateStart")
|
|
9849
|
+
self._DateEnd = params.get("DateEnd")
|
|
9764
9850
|
memeber_set = set(params.keys())
|
|
9765
9851
|
for name, value in vars(self).items():
|
|
9766
9852
|
property_name = name[1:]
|
|
@@ -14297,6 +14383,8 @@ FailedOperation.UnKnowError:表示识别失败;
|
|
|
14297
14383
|
15:非税发票
|
|
14298
14384
|
16:全电发票
|
|
14299
14385
|
17:医疗发票
|
|
14386
|
+
18:完税凭证
|
|
14387
|
+
19:海关缴款书
|
|
14300
14388
|
:type Type: int
|
|
14301
14389
|
:param _Polygon: 该发票在原图片中的四点坐标。
|
|
14302
14390
|
:type Polygon: :class:`tencentcloud.ocr.v20181119.models.Polygon`
|
|
@@ -14361,6 +14449,8 @@ FailedOperation.UnKnowError:表示识别失败;
|
|
|
14361
14449
|
15:非税发票
|
|
14362
14450
|
16:全电发票
|
|
14363
14451
|
17:医疗发票
|
|
14452
|
+
18:完税凭证
|
|
14453
|
+
19:海关缴款书
|
|
14364
14454
|
:rtype: int
|
|
14365
14455
|
"""
|
|
14366
14456
|
return self._Type
|
|
@@ -29024,6 +29114,12 @@ class SingleInvoiceItem(AbstractModel):
|
|
|
29024
29114
|
:param _ElectronicFlightTicketFull: 电子发票(机票行程单)
|
|
29025
29115
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
29026
29116
|
:type ElectronicFlightTicketFull: :class:`tencentcloud.ocr.v20181119.models.ElectronicFlightTicketFull`
|
|
29117
|
+
:param _TaxPayment: 完税凭证
|
|
29118
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
29119
|
+
:type TaxPayment: :class:`tencentcloud.ocr.v20181119.models.TaxPayment`
|
|
29120
|
+
:param _CustomsPaymentReceipt: 海关缴款
|
|
29121
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
29122
|
+
:type CustomsPaymentReceipt: :class:`tencentcloud.ocr.v20181119.models.CustomsPaymentReceipt`
|
|
29027
29123
|
"""
|
|
29028
29124
|
self._VatSpecialInvoice = None
|
|
29029
29125
|
self._VatCommonInvoice = None
|
|
@@ -29052,6 +29148,8 @@ class SingleInvoiceItem(AbstractModel):
|
|
|
29052
29148
|
self._VatSalesList = None
|
|
29053
29149
|
self._ElectronicTrainTicketFull = None
|
|
29054
29150
|
self._ElectronicFlightTicketFull = None
|
|
29151
|
+
self._TaxPayment = None
|
|
29152
|
+
self._CustomsPaymentReceipt = None
|
|
29055
29153
|
|
|
29056
29154
|
@property
|
|
29057
29155
|
def VatSpecialInvoice(self):
|
|
@@ -29377,6 +29475,30 @@ class SingleInvoiceItem(AbstractModel):
|
|
|
29377
29475
|
def ElectronicFlightTicketFull(self, ElectronicFlightTicketFull):
|
|
29378
29476
|
self._ElectronicFlightTicketFull = ElectronicFlightTicketFull
|
|
29379
29477
|
|
|
29478
|
+
@property
|
|
29479
|
+
def TaxPayment(self):
|
|
29480
|
+
"""完税凭证
|
|
29481
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
29482
|
+
:rtype: :class:`tencentcloud.ocr.v20181119.models.TaxPayment`
|
|
29483
|
+
"""
|
|
29484
|
+
return self._TaxPayment
|
|
29485
|
+
|
|
29486
|
+
@TaxPayment.setter
|
|
29487
|
+
def TaxPayment(self, TaxPayment):
|
|
29488
|
+
self._TaxPayment = TaxPayment
|
|
29489
|
+
|
|
29490
|
+
@property
|
|
29491
|
+
def CustomsPaymentReceipt(self):
|
|
29492
|
+
"""海关缴款
|
|
29493
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
29494
|
+
:rtype: :class:`tencentcloud.ocr.v20181119.models.CustomsPaymentReceipt`
|
|
29495
|
+
"""
|
|
29496
|
+
return self._CustomsPaymentReceipt
|
|
29497
|
+
|
|
29498
|
+
@CustomsPaymentReceipt.setter
|
|
29499
|
+
def CustomsPaymentReceipt(self, CustomsPaymentReceipt):
|
|
29500
|
+
self._CustomsPaymentReceipt = CustomsPaymentReceipt
|
|
29501
|
+
|
|
29380
29502
|
|
|
29381
29503
|
def _deserialize(self, params):
|
|
29382
29504
|
if params.get("VatSpecialInvoice") is not None:
|
|
@@ -29460,6 +29582,12 @@ class SingleInvoiceItem(AbstractModel):
|
|
|
29460
29582
|
if params.get("ElectronicFlightTicketFull") is not None:
|
|
29461
29583
|
self._ElectronicFlightTicketFull = ElectronicFlightTicketFull()
|
|
29462
29584
|
self._ElectronicFlightTicketFull._deserialize(params.get("ElectronicFlightTicketFull"))
|
|
29585
|
+
if params.get("TaxPayment") is not None:
|
|
29586
|
+
self._TaxPayment = TaxPayment()
|
|
29587
|
+
self._TaxPayment._deserialize(params.get("TaxPayment"))
|
|
29588
|
+
if params.get("CustomsPaymentReceipt") is not None:
|
|
29589
|
+
self._CustomsPaymentReceipt = CustomsPaymentReceipt()
|
|
29590
|
+
self._CustomsPaymentReceipt._deserialize(params.get("CustomsPaymentReceipt"))
|
|
29463
29591
|
memeber_set = set(params.keys())
|
|
29464
29592
|
for name, value in vars(self).items():
|
|
29465
29593
|
property_name = name[1:]
|
|
@@ -31043,6 +31171,66 @@ class TableTitle(AbstractModel):
|
|
|
31043
31171
|
|
|
31044
31172
|
|
|
31045
31173
|
|
|
31174
|
+
class TaxPayment(AbstractModel):
|
|
31175
|
+
"""完税凭证
|
|
31176
|
+
|
|
31177
|
+
"""
|
|
31178
|
+
|
|
31179
|
+
def __init__(self):
|
|
31180
|
+
r"""
|
|
31181
|
+
:param _Title: 发票名称
|
|
31182
|
+
:type Title: str
|
|
31183
|
+
:param _Content: 识别出的字段名称(关键字),支持以下字段:
|
|
31184
|
+
税号 、纳税人识别号 、纳税人名称 、金额合计大写 、金额合计小写 、填发日期 、税务机关 、填票人。
|
|
31185
|
+
示例值:纳税人识别号
|
|
31186
|
+
:type Content: list of OtherInvoiceItem
|
|
31187
|
+
"""
|
|
31188
|
+
self._Title = None
|
|
31189
|
+
self._Content = None
|
|
31190
|
+
|
|
31191
|
+
@property
|
|
31192
|
+
def Title(self):
|
|
31193
|
+
"""发票名称
|
|
31194
|
+
:rtype: str
|
|
31195
|
+
"""
|
|
31196
|
+
return self._Title
|
|
31197
|
+
|
|
31198
|
+
@Title.setter
|
|
31199
|
+
def Title(self, Title):
|
|
31200
|
+
self._Title = Title
|
|
31201
|
+
|
|
31202
|
+
@property
|
|
31203
|
+
def Content(self):
|
|
31204
|
+
"""识别出的字段名称(关键字),支持以下字段:
|
|
31205
|
+
税号 、纳税人识别号 、纳税人名称 、金额合计大写 、金额合计小写 、填发日期 、税务机关 、填票人。
|
|
31206
|
+
示例值:纳税人识别号
|
|
31207
|
+
:rtype: list of OtherInvoiceItem
|
|
31208
|
+
"""
|
|
31209
|
+
return self._Content
|
|
31210
|
+
|
|
31211
|
+
@Content.setter
|
|
31212
|
+
def Content(self, Content):
|
|
31213
|
+
self._Content = Content
|
|
31214
|
+
|
|
31215
|
+
|
|
31216
|
+
def _deserialize(self, params):
|
|
31217
|
+
self._Title = params.get("Title")
|
|
31218
|
+
if params.get("Content") is not None:
|
|
31219
|
+
self._Content = []
|
|
31220
|
+
for item in params.get("Content"):
|
|
31221
|
+
obj = OtherInvoiceItem()
|
|
31222
|
+
obj._deserialize(item)
|
|
31223
|
+
self._Content.append(obj)
|
|
31224
|
+
memeber_set = set(params.keys())
|
|
31225
|
+
for name, value in vars(self).items():
|
|
31226
|
+
property_name = name[1:]
|
|
31227
|
+
if property_name in memeber_set:
|
|
31228
|
+
memeber_set.remove(property_name)
|
|
31229
|
+
if len(memeber_set) > 0:
|
|
31230
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
31231
|
+
|
|
31232
|
+
|
|
31233
|
+
|
|
31046
31234
|
class TaxiInvoiceOCRRequest(AbstractModel):
|
|
31047
31235
|
"""TaxiInvoiceOCR请求参数结构体
|
|
31048
31236
|
|
|
@@ -36499,6 +36687,14 @@ class VatElectronicItemInfo(AbstractModel):
|
|
|
36499
36687
|
:type EstateNumber: str
|
|
36500
36688
|
:param _AreaUnit: 面积单位,仅不动产经营租赁服务发票返回
|
|
36501
36689
|
:type AreaUnit: str
|
|
36690
|
+
:param _Traveler: 出行人,仅旅客运输服务发票返回
|
|
36691
|
+
:type Traveler: str
|
|
36692
|
+
:param _TravelerID: 有效身份证件号,仅旅客运输服务发票返回
|
|
36693
|
+
:type TravelerID: str
|
|
36694
|
+
:param _TravelDate: 出行日期,仅旅客运输服务发票返回
|
|
36695
|
+
:type TravelDate: str
|
|
36696
|
+
:param _TravelLevel: 等级,仅旅客运输服务发票返回
|
|
36697
|
+
:type TravelLevel: str
|
|
36502
36698
|
"""
|
|
36503
36699
|
self._Name = None
|
|
36504
36700
|
self._Quantity = None
|
|
@@ -36517,6 +36713,10 @@ class VatElectronicItemInfo(AbstractModel):
|
|
|
36517
36713
|
self._BuildingName = None
|
|
36518
36714
|
self._EstateNumber = None
|
|
36519
36715
|
self._AreaUnit = None
|
|
36716
|
+
self._Traveler = None
|
|
36717
|
+
self._TravelerID = None
|
|
36718
|
+
self._TravelDate = None
|
|
36719
|
+
self._TravelLevel = None
|
|
36520
36720
|
|
|
36521
36721
|
@property
|
|
36522
36722
|
def Name(self):
|
|
@@ -36705,6 +36905,50 @@ class VatElectronicItemInfo(AbstractModel):
|
|
|
36705
36905
|
def AreaUnit(self, AreaUnit):
|
|
36706
36906
|
self._AreaUnit = AreaUnit
|
|
36707
36907
|
|
|
36908
|
+
@property
|
|
36909
|
+
def Traveler(self):
|
|
36910
|
+
"""出行人,仅旅客运输服务发票返回
|
|
36911
|
+
:rtype: str
|
|
36912
|
+
"""
|
|
36913
|
+
return self._Traveler
|
|
36914
|
+
|
|
36915
|
+
@Traveler.setter
|
|
36916
|
+
def Traveler(self, Traveler):
|
|
36917
|
+
self._Traveler = Traveler
|
|
36918
|
+
|
|
36919
|
+
@property
|
|
36920
|
+
def TravelerID(self):
|
|
36921
|
+
"""有效身份证件号,仅旅客运输服务发票返回
|
|
36922
|
+
:rtype: str
|
|
36923
|
+
"""
|
|
36924
|
+
return self._TravelerID
|
|
36925
|
+
|
|
36926
|
+
@TravelerID.setter
|
|
36927
|
+
def TravelerID(self, TravelerID):
|
|
36928
|
+
self._TravelerID = TravelerID
|
|
36929
|
+
|
|
36930
|
+
@property
|
|
36931
|
+
def TravelDate(self):
|
|
36932
|
+
"""出行日期,仅旅客运输服务发票返回
|
|
36933
|
+
:rtype: str
|
|
36934
|
+
"""
|
|
36935
|
+
return self._TravelDate
|
|
36936
|
+
|
|
36937
|
+
@TravelDate.setter
|
|
36938
|
+
def TravelDate(self, TravelDate):
|
|
36939
|
+
self._TravelDate = TravelDate
|
|
36940
|
+
|
|
36941
|
+
@property
|
|
36942
|
+
def TravelLevel(self):
|
|
36943
|
+
"""等级,仅旅客运输服务发票返回
|
|
36944
|
+
:rtype: str
|
|
36945
|
+
"""
|
|
36946
|
+
return self._TravelLevel
|
|
36947
|
+
|
|
36948
|
+
@TravelLevel.setter
|
|
36949
|
+
def TravelLevel(self, TravelLevel):
|
|
36950
|
+
self._TravelLevel = TravelLevel
|
|
36951
|
+
|
|
36708
36952
|
|
|
36709
36953
|
def _deserialize(self, params):
|
|
36710
36954
|
self._Name = params.get("Name")
|
|
@@ -36724,6 +36968,10 @@ class VatElectronicItemInfo(AbstractModel):
|
|
|
36724
36968
|
self._BuildingName = params.get("BuildingName")
|
|
36725
36969
|
self._EstateNumber = params.get("EstateNumber")
|
|
36726
36970
|
self._AreaUnit = params.get("AreaUnit")
|
|
36971
|
+
self._Traveler = params.get("Traveler")
|
|
36972
|
+
self._TravelerID = params.get("TravelerID")
|
|
36973
|
+
self._TravelDate = params.get("TravelDate")
|
|
36974
|
+
self._TravelLevel = params.get("TravelLevel")
|
|
36727
36975
|
memeber_set = set(params.keys())
|
|
36728
36976
|
for name, value in vars(self).items():
|
|
36729
36977
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1324
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1322
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|