tencentcloud-sdk-python 3.0.1322__py2.py3-none-any.whl → 3.0.1323__py2.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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/aiart/v20221229/aiart_client.py +54 -0
- tencentcloud/aiart/v20221229/models.py +523 -0
- tencentcloud/ckafka/v20190819/models.py +15 -0
- tencentcloud/cwp/v20180228/cwp_client.py +0 -25
- tencentcloud/cwp/v20180228/models.py +0 -274
- tencentcloud/dcdb/v20180411/dcdb_client.py +46 -0
- tencentcloud/dcdb/v20180411/models.py +379 -0
- tencentcloud/dlc/v20210125/models.py +205 -10
- tencentcloud/ess/v20201111/models.py +2 -2
- tencentcloud/essbasic/v20210526/models.py +2 -2
- tencentcloud/faceid/v20180301/models.py +8 -6
- tencentcloud/lcic/v20220817/models.py +0 -156
- tencentcloud/lke/v20231130/models.py +15 -0
- tencentcloud/lkeap/v20240522/lkeap_client.py +1 -1
- tencentcloud/mqtt/v20240516/models.py +339 -0
- tencentcloud/mqtt/v20240516/mqtt_client.py +23 -0
- tencentcloud/ocr/v20181119/models.py +92 -2
- tencentcloud/taf/v20200210/errorcodes.py +0 -156
- tencentcloud/taf/v20200210/models.py +80 -1291
- tencentcloud/taf/v20200210/taf_client.py +0 -69
- tencentcloud/tcb/v20180608/errorcodes.py +3 -0
- tencentcloud/teo/v20220901/models.py +6 -0
- tencentcloud/tione/v20211111/models.py +19 -0
- tencentcloud/trabbit/v20230418/models.py +15 -304
- tencentcloud/wedata/v20210820/models.py +264 -0
- {tencentcloud_sdk_python-3.0.1322.dist-info → tencentcloud_sdk_python-3.0.1323.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1322.dist-info → tencentcloud_sdk_python-3.0.1323.dist-info}/RECORD +31 -31
- {tencentcloud_sdk_python-3.0.1322.dist-info → tencentcloud_sdk_python-3.0.1323.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1322.dist-info → tencentcloud_sdk_python-3.0.1323.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1322.dist-info → tencentcloud_sdk_python-3.0.1323.dist-info}/top_level.txt +0 -0
@@ -15457,6 +15457,8 @@ class ListQARequest(AbstractModel):
|
|
15457
15457
|
:type Source: int
|
15458
15458
|
:param _QueryAnswer: 查询答案
|
15459
15459
|
:type QueryAnswer: str
|
15460
|
+
:param _CateBizId: 分类ID
|
15461
|
+
:type CateBizId: str
|
15460
15462
|
:param _QaBizIds: QA业务ID列表
|
15461
15463
|
:type QaBizIds: list of str
|
15462
15464
|
:param _QueryType: 查询类型 filename 名称、 attribute 标签
|
@@ -15471,6 +15473,7 @@ class ListQARequest(AbstractModel):
|
|
15471
15473
|
self._DocBizId = None
|
15472
15474
|
self._Source = None
|
15473
15475
|
self._QueryAnswer = None
|
15476
|
+
self._CateBizId = None
|
15474
15477
|
self._QaBizIds = None
|
15475
15478
|
self._QueryType = None
|
15476
15479
|
|
@@ -15573,6 +15576,17 @@ class ListQARequest(AbstractModel):
|
|
15573
15576
|
def QueryAnswer(self, QueryAnswer):
|
15574
15577
|
self._QueryAnswer = QueryAnswer
|
15575
15578
|
|
15579
|
+
@property
|
15580
|
+
def CateBizId(self):
|
15581
|
+
"""分类ID
|
15582
|
+
:rtype: str
|
15583
|
+
"""
|
15584
|
+
return self._CateBizId
|
15585
|
+
|
15586
|
+
@CateBizId.setter
|
15587
|
+
def CateBizId(self, CateBizId):
|
15588
|
+
self._CateBizId = CateBizId
|
15589
|
+
|
15576
15590
|
@property
|
15577
15591
|
def QaBizIds(self):
|
15578
15592
|
"""QA业务ID列表
|
@@ -15606,6 +15620,7 @@ class ListQARequest(AbstractModel):
|
|
15606
15620
|
self._DocBizId = params.get("DocBizId")
|
15607
15621
|
self._Source = params.get("Source")
|
15608
15622
|
self._QueryAnswer = params.get("QueryAnswer")
|
15623
|
+
self._CateBizId = params.get("CateBizId")
|
15609
15624
|
self._QaBizIds = params.get("QaBizIds")
|
15610
15625
|
self._QueryType = params.get("QueryType")
|
15611
15626
|
memeber_set = set(params.keys())
|
@@ -669,7 +669,7 @@ class LkeapClient(AbstractClient):
|
|
669
669
|
|
670
670
|
|
671
671
|
def UploadDoc(self, request):
|
672
|
-
"""用于上传文档内容。上传的文档将存储在知识库中,可以通过
|
672
|
+
"""用于上传文档内容。上传的文档将存储在知识库中,可以通过RetrieveKnowledge[知识库内容检索接口](https://cloud.tencent.com/document/product/1772/115349)进行检索。
|
673
673
|
使用场景:适用于需要长期存储和检索的文档内容,如产品手册、用户指南等。
|
674
674
|
|
675
675
|
:param request: Request instance for UploadDoc.
|
@@ -4492,6 +4492,79 @@ API:通过API手动注册
|
|
4492
4492
|
self._RequestId = params.get("RequestId")
|
4493
4493
|
|
4494
4494
|
|
4495
|
+
class DescribeProductSKUListRequest(AbstractModel):
|
4496
|
+
"""DescribeProductSKUList请求参数结构体
|
4497
|
+
|
4498
|
+
"""
|
4499
|
+
|
4500
|
+
|
4501
|
+
class DescribeProductSKUListResponse(AbstractModel):
|
4502
|
+
"""DescribeProductSKUList返回参数结构体
|
4503
|
+
|
4504
|
+
"""
|
4505
|
+
|
4506
|
+
def __init__(self):
|
4507
|
+
r"""
|
4508
|
+
:param _TotalCount: 查询总数
|
4509
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4510
|
+
:type TotalCount: int
|
4511
|
+
:param _MQTTProductSkuList: mqtt商品配置信息
|
4512
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4513
|
+
:type MQTTProductSkuList: list of ProductSkuItem
|
4514
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4515
|
+
:type RequestId: str
|
4516
|
+
"""
|
4517
|
+
self._TotalCount = None
|
4518
|
+
self._MQTTProductSkuList = None
|
4519
|
+
self._RequestId = None
|
4520
|
+
|
4521
|
+
@property
|
4522
|
+
def TotalCount(self):
|
4523
|
+
"""查询总数
|
4524
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4525
|
+
:rtype: int
|
4526
|
+
"""
|
4527
|
+
return self._TotalCount
|
4528
|
+
|
4529
|
+
@TotalCount.setter
|
4530
|
+
def TotalCount(self, TotalCount):
|
4531
|
+
self._TotalCount = TotalCount
|
4532
|
+
|
4533
|
+
@property
|
4534
|
+
def MQTTProductSkuList(self):
|
4535
|
+
"""mqtt商品配置信息
|
4536
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4537
|
+
:rtype: list of ProductSkuItem
|
4538
|
+
"""
|
4539
|
+
return self._MQTTProductSkuList
|
4540
|
+
|
4541
|
+
@MQTTProductSkuList.setter
|
4542
|
+
def MQTTProductSkuList(self, MQTTProductSkuList):
|
4543
|
+
self._MQTTProductSkuList = MQTTProductSkuList
|
4544
|
+
|
4545
|
+
@property
|
4546
|
+
def RequestId(self):
|
4547
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4548
|
+
:rtype: str
|
4549
|
+
"""
|
4550
|
+
return self._RequestId
|
4551
|
+
|
4552
|
+
@RequestId.setter
|
4553
|
+
def RequestId(self, RequestId):
|
4554
|
+
self._RequestId = RequestId
|
4555
|
+
|
4556
|
+
|
4557
|
+
def _deserialize(self, params):
|
4558
|
+
self._TotalCount = params.get("TotalCount")
|
4559
|
+
if params.get("MQTTProductSkuList") is not None:
|
4560
|
+
self._MQTTProductSkuList = []
|
4561
|
+
for item in params.get("MQTTProductSkuList"):
|
4562
|
+
obj = ProductSkuItem()
|
4563
|
+
obj._deserialize(item)
|
4564
|
+
self._MQTTProductSkuList.append(obj)
|
4565
|
+
self._RequestId = params.get("RequestId")
|
4566
|
+
|
4567
|
+
|
4495
4568
|
class DescribeTopicListRequest(AbstractModel):
|
4496
4569
|
"""DescribeTopicList请求参数结构体
|
4497
4570
|
|
@@ -7246,6 +7319,272 @@ class ModifyUserResponse(AbstractModel):
|
|
7246
7319
|
self._RequestId = params.get("RequestId")
|
7247
7320
|
|
7248
7321
|
|
7322
|
+
class PriceTag(AbstractModel):
|
7323
|
+
"""价格标签信息
|
7324
|
+
|
7325
|
+
"""
|
7326
|
+
|
7327
|
+
def __init__(self):
|
7328
|
+
r"""
|
7329
|
+
:param _Name: 计价名称
|
7330
|
+
:type Name: str
|
7331
|
+
:param _Category: 计价类别
|
7332
|
+
:type Category: str
|
7333
|
+
:param _Code: 计费项标签
|
7334
|
+
:type Code: str
|
7335
|
+
:param _Step: 步长
|
7336
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7337
|
+
:type Step: int
|
7338
|
+
"""
|
7339
|
+
self._Name = None
|
7340
|
+
self._Category = None
|
7341
|
+
self._Code = None
|
7342
|
+
self._Step = None
|
7343
|
+
|
7344
|
+
@property
|
7345
|
+
def Name(self):
|
7346
|
+
"""计价名称
|
7347
|
+
:rtype: str
|
7348
|
+
"""
|
7349
|
+
return self._Name
|
7350
|
+
|
7351
|
+
@Name.setter
|
7352
|
+
def Name(self, Name):
|
7353
|
+
self._Name = Name
|
7354
|
+
|
7355
|
+
@property
|
7356
|
+
def Category(self):
|
7357
|
+
"""计价类别
|
7358
|
+
:rtype: str
|
7359
|
+
"""
|
7360
|
+
return self._Category
|
7361
|
+
|
7362
|
+
@Category.setter
|
7363
|
+
def Category(self, Category):
|
7364
|
+
self._Category = Category
|
7365
|
+
|
7366
|
+
@property
|
7367
|
+
def Code(self):
|
7368
|
+
"""计费项标签
|
7369
|
+
:rtype: str
|
7370
|
+
"""
|
7371
|
+
return self._Code
|
7372
|
+
|
7373
|
+
@Code.setter
|
7374
|
+
def Code(self, Code):
|
7375
|
+
self._Code = Code
|
7376
|
+
|
7377
|
+
@property
|
7378
|
+
def Step(self):
|
7379
|
+
"""步长
|
7380
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7381
|
+
:rtype: int
|
7382
|
+
"""
|
7383
|
+
return self._Step
|
7384
|
+
|
7385
|
+
@Step.setter
|
7386
|
+
def Step(self, Step):
|
7387
|
+
self._Step = Step
|
7388
|
+
|
7389
|
+
|
7390
|
+
def _deserialize(self, params):
|
7391
|
+
self._Name = params.get("Name")
|
7392
|
+
self._Category = params.get("Category")
|
7393
|
+
self._Code = params.get("Code")
|
7394
|
+
self._Step = params.get("Step")
|
7395
|
+
memeber_set = set(params.keys())
|
7396
|
+
for name, value in vars(self).items():
|
7397
|
+
property_name = name[1:]
|
7398
|
+
if property_name in memeber_set:
|
7399
|
+
memeber_set.remove(property_name)
|
7400
|
+
if len(memeber_set) > 0:
|
7401
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
7402
|
+
|
7403
|
+
|
7404
|
+
|
7405
|
+
class ProductSkuItem(AbstractModel):
|
7406
|
+
"""MQTT ProductSkuItem
|
7407
|
+
|
7408
|
+
"""
|
7409
|
+
|
7410
|
+
def __init__(self):
|
7411
|
+
r"""
|
7412
|
+
:param _InstanceType: 规格类型
|
7413
|
+
BASIC:基础版
|
7414
|
+
PRO :专业版
|
7415
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7416
|
+
:type InstanceType: str
|
7417
|
+
:param _SkuCode: 规格代码
|
7418
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7419
|
+
:type SkuCode: str
|
7420
|
+
:param _OnSale: 是否售卖
|
7421
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7422
|
+
:type OnSale: bool
|
7423
|
+
:param _TopicNumLimit: topic num限制
|
7424
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7425
|
+
:type TopicNumLimit: int
|
7426
|
+
:param _TpsLimit: tps
|
7427
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7428
|
+
:type TpsLimit: int
|
7429
|
+
:param _ClientNumLimit: 客户端连接数
|
7430
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7431
|
+
:type ClientNumLimit: int
|
7432
|
+
:param _MaxSubscriptionPerClient: 单客户端最大订阅数
|
7433
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7434
|
+
:type MaxSubscriptionPerClient: int
|
7435
|
+
:param _AuthorizationPolicyLimit: 授权规则条数
|
7436
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7437
|
+
:type AuthorizationPolicyLimit: int
|
7438
|
+
:param _PriceTags: 计费项信息
|
7439
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7440
|
+
:type PriceTags: list of PriceTag
|
7441
|
+
"""
|
7442
|
+
self._InstanceType = None
|
7443
|
+
self._SkuCode = None
|
7444
|
+
self._OnSale = None
|
7445
|
+
self._TopicNumLimit = None
|
7446
|
+
self._TpsLimit = None
|
7447
|
+
self._ClientNumLimit = None
|
7448
|
+
self._MaxSubscriptionPerClient = None
|
7449
|
+
self._AuthorizationPolicyLimit = None
|
7450
|
+
self._PriceTags = None
|
7451
|
+
|
7452
|
+
@property
|
7453
|
+
def InstanceType(self):
|
7454
|
+
"""规格类型
|
7455
|
+
BASIC:基础版
|
7456
|
+
PRO :专业版
|
7457
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7458
|
+
:rtype: str
|
7459
|
+
"""
|
7460
|
+
return self._InstanceType
|
7461
|
+
|
7462
|
+
@InstanceType.setter
|
7463
|
+
def InstanceType(self, InstanceType):
|
7464
|
+
self._InstanceType = InstanceType
|
7465
|
+
|
7466
|
+
@property
|
7467
|
+
def SkuCode(self):
|
7468
|
+
"""规格代码
|
7469
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7470
|
+
:rtype: str
|
7471
|
+
"""
|
7472
|
+
return self._SkuCode
|
7473
|
+
|
7474
|
+
@SkuCode.setter
|
7475
|
+
def SkuCode(self, SkuCode):
|
7476
|
+
self._SkuCode = SkuCode
|
7477
|
+
|
7478
|
+
@property
|
7479
|
+
def OnSale(self):
|
7480
|
+
"""是否售卖
|
7481
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7482
|
+
:rtype: bool
|
7483
|
+
"""
|
7484
|
+
return self._OnSale
|
7485
|
+
|
7486
|
+
@OnSale.setter
|
7487
|
+
def OnSale(self, OnSale):
|
7488
|
+
self._OnSale = OnSale
|
7489
|
+
|
7490
|
+
@property
|
7491
|
+
def TopicNumLimit(self):
|
7492
|
+
"""topic num限制
|
7493
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7494
|
+
:rtype: int
|
7495
|
+
"""
|
7496
|
+
return self._TopicNumLimit
|
7497
|
+
|
7498
|
+
@TopicNumLimit.setter
|
7499
|
+
def TopicNumLimit(self, TopicNumLimit):
|
7500
|
+
self._TopicNumLimit = TopicNumLimit
|
7501
|
+
|
7502
|
+
@property
|
7503
|
+
def TpsLimit(self):
|
7504
|
+
"""tps
|
7505
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7506
|
+
:rtype: int
|
7507
|
+
"""
|
7508
|
+
return self._TpsLimit
|
7509
|
+
|
7510
|
+
@TpsLimit.setter
|
7511
|
+
def TpsLimit(self, TpsLimit):
|
7512
|
+
self._TpsLimit = TpsLimit
|
7513
|
+
|
7514
|
+
@property
|
7515
|
+
def ClientNumLimit(self):
|
7516
|
+
"""客户端连接数
|
7517
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7518
|
+
:rtype: int
|
7519
|
+
"""
|
7520
|
+
return self._ClientNumLimit
|
7521
|
+
|
7522
|
+
@ClientNumLimit.setter
|
7523
|
+
def ClientNumLimit(self, ClientNumLimit):
|
7524
|
+
self._ClientNumLimit = ClientNumLimit
|
7525
|
+
|
7526
|
+
@property
|
7527
|
+
def MaxSubscriptionPerClient(self):
|
7528
|
+
"""单客户端最大订阅数
|
7529
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7530
|
+
:rtype: int
|
7531
|
+
"""
|
7532
|
+
return self._MaxSubscriptionPerClient
|
7533
|
+
|
7534
|
+
@MaxSubscriptionPerClient.setter
|
7535
|
+
def MaxSubscriptionPerClient(self, MaxSubscriptionPerClient):
|
7536
|
+
self._MaxSubscriptionPerClient = MaxSubscriptionPerClient
|
7537
|
+
|
7538
|
+
@property
|
7539
|
+
def AuthorizationPolicyLimit(self):
|
7540
|
+
"""授权规则条数
|
7541
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7542
|
+
:rtype: int
|
7543
|
+
"""
|
7544
|
+
return self._AuthorizationPolicyLimit
|
7545
|
+
|
7546
|
+
@AuthorizationPolicyLimit.setter
|
7547
|
+
def AuthorizationPolicyLimit(self, AuthorizationPolicyLimit):
|
7548
|
+
self._AuthorizationPolicyLimit = AuthorizationPolicyLimit
|
7549
|
+
|
7550
|
+
@property
|
7551
|
+
def PriceTags(self):
|
7552
|
+
"""计费项信息
|
7553
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7554
|
+
:rtype: list of PriceTag
|
7555
|
+
"""
|
7556
|
+
return self._PriceTags
|
7557
|
+
|
7558
|
+
@PriceTags.setter
|
7559
|
+
def PriceTags(self, PriceTags):
|
7560
|
+
self._PriceTags = PriceTags
|
7561
|
+
|
7562
|
+
|
7563
|
+
def _deserialize(self, params):
|
7564
|
+
self._InstanceType = params.get("InstanceType")
|
7565
|
+
self._SkuCode = params.get("SkuCode")
|
7566
|
+
self._OnSale = params.get("OnSale")
|
7567
|
+
self._TopicNumLimit = params.get("TopicNumLimit")
|
7568
|
+
self._TpsLimit = params.get("TpsLimit")
|
7569
|
+
self._ClientNumLimit = params.get("ClientNumLimit")
|
7570
|
+
self._MaxSubscriptionPerClient = params.get("MaxSubscriptionPerClient")
|
7571
|
+
self._AuthorizationPolicyLimit = params.get("AuthorizationPolicyLimit")
|
7572
|
+
if params.get("PriceTags") is not None:
|
7573
|
+
self._PriceTags = []
|
7574
|
+
for item in params.get("PriceTags"):
|
7575
|
+
obj = PriceTag()
|
7576
|
+
obj._deserialize(item)
|
7577
|
+
self._PriceTags.append(obj)
|
7578
|
+
memeber_set = set(params.keys())
|
7579
|
+
for name, value in vars(self).items():
|
7580
|
+
property_name = name[1:]
|
7581
|
+
if property_name in memeber_set:
|
7582
|
+
memeber_set.remove(property_name)
|
7583
|
+
if len(memeber_set) > 0:
|
7584
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
7585
|
+
|
7586
|
+
|
7587
|
+
|
7249
7588
|
class PublicAccessRule(AbstractModel):
|
7250
7589
|
"""公网访问安全规则
|
7251
7590
|
|
@@ -698,6 +698,29 @@ class MqttClient(AbstractClient):
|
|
698
698
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
699
699
|
|
700
700
|
|
701
|
+
def DescribeProductSKUList(self, request):
|
702
|
+
"""获取产品售卖规格
|
703
|
+
|
704
|
+
:param request: Request instance for DescribeProductSKUList.
|
705
|
+
:type request: :class:`tencentcloud.mqtt.v20240516.models.DescribeProductSKUListRequest`
|
706
|
+
:rtype: :class:`tencentcloud.mqtt.v20240516.models.DescribeProductSKUListResponse`
|
707
|
+
|
708
|
+
"""
|
709
|
+
try:
|
710
|
+
params = request._serialize()
|
711
|
+
headers = request.headers
|
712
|
+
body = self.call("DescribeProductSKUList", params, headers=headers)
|
713
|
+
response = json.loads(body)
|
714
|
+
model = models.DescribeProductSKUListResponse()
|
715
|
+
model._deserialize(response["Response"])
|
716
|
+
return model
|
717
|
+
except Exception as e:
|
718
|
+
if isinstance(e, TencentCloudSDKException):
|
719
|
+
raise
|
720
|
+
else:
|
721
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
722
|
+
|
723
|
+
|
701
724
|
def DescribeTopic(self, request):
|
702
725
|
"""查询mqtt主题详情
|
703
726
|
|
@@ -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
|
@@ -9640,6 +9640,10 @@ class FlightItemInfo(AbstractModel):
|
|
9640
9640
|
:type FareBasis: str
|
9641
9641
|
:param _Allow: 免费行李额
|
9642
9642
|
:type Allow: str
|
9643
|
+
:param _DateStart: 客票生效日期
|
9644
|
+
:type DateStart: str
|
9645
|
+
:param _DateEnd: 有效截止日期
|
9646
|
+
:type DateEnd: str
|
9643
9647
|
"""
|
9644
9648
|
self._TerminalGetOn = None
|
9645
9649
|
self._TerminalGetOff = None
|
@@ -9650,6 +9654,8 @@ class FlightItemInfo(AbstractModel):
|
|
9650
9654
|
self._TimeGetOn = None
|
9651
9655
|
self._FareBasis = None
|
9652
9656
|
self._Allow = None
|
9657
|
+
self._DateStart = None
|
9658
|
+
self._DateEnd = None
|
9653
9659
|
|
9654
9660
|
@property
|
9655
9661
|
def TerminalGetOn(self):
|
@@ -9750,6 +9756,28 @@ class FlightItemInfo(AbstractModel):
|
|
9750
9756
|
def Allow(self, Allow):
|
9751
9757
|
self._Allow = Allow
|
9752
9758
|
|
9759
|
+
@property
|
9760
|
+
def DateStart(self):
|
9761
|
+
"""客票生效日期
|
9762
|
+
:rtype: str
|
9763
|
+
"""
|
9764
|
+
return self._DateStart
|
9765
|
+
|
9766
|
+
@DateStart.setter
|
9767
|
+
def DateStart(self, DateStart):
|
9768
|
+
self._DateStart = DateStart
|
9769
|
+
|
9770
|
+
@property
|
9771
|
+
def DateEnd(self):
|
9772
|
+
"""有效截止日期
|
9773
|
+
:rtype: str
|
9774
|
+
"""
|
9775
|
+
return self._DateEnd
|
9776
|
+
|
9777
|
+
@DateEnd.setter
|
9778
|
+
def DateEnd(self, DateEnd):
|
9779
|
+
self._DateEnd = DateEnd
|
9780
|
+
|
9753
9781
|
|
9754
9782
|
def _deserialize(self, params):
|
9755
9783
|
self._TerminalGetOn = params.get("TerminalGetOn")
|
@@ -9761,6 +9789,8 @@ class FlightItemInfo(AbstractModel):
|
|
9761
9789
|
self._TimeGetOn = params.get("TimeGetOn")
|
9762
9790
|
self._FareBasis = params.get("FareBasis")
|
9763
9791
|
self._Allow = params.get("Allow")
|
9792
|
+
self._DateStart = params.get("DateStart")
|
9793
|
+
self._DateEnd = params.get("DateEnd")
|
9764
9794
|
memeber_set = set(params.keys())
|
9765
9795
|
for name, value in vars(self).items():
|
9766
9796
|
property_name = name[1:]
|
@@ -36499,6 +36529,14 @@ class VatElectronicItemInfo(AbstractModel):
|
|
36499
36529
|
:type EstateNumber: str
|
36500
36530
|
:param _AreaUnit: 面积单位,仅不动产经营租赁服务发票返回
|
36501
36531
|
:type AreaUnit: str
|
36532
|
+
:param _Traveler: 出行人,仅旅客运输服务发票返回
|
36533
|
+
:type Traveler: str
|
36534
|
+
:param _TravelerID: 有效身份证件号,仅旅客运输服务发票返回
|
36535
|
+
:type TravelerID: str
|
36536
|
+
:param _TravelDate: 出行日期,仅旅客运输服务发票返回
|
36537
|
+
:type TravelDate: str
|
36538
|
+
:param _TravelLevel: 等级,仅旅客运输服务发票返回
|
36539
|
+
:type TravelLevel: str
|
36502
36540
|
"""
|
36503
36541
|
self._Name = None
|
36504
36542
|
self._Quantity = None
|
@@ -36517,6 +36555,10 @@ class VatElectronicItemInfo(AbstractModel):
|
|
36517
36555
|
self._BuildingName = None
|
36518
36556
|
self._EstateNumber = None
|
36519
36557
|
self._AreaUnit = None
|
36558
|
+
self._Traveler = None
|
36559
|
+
self._TravelerID = None
|
36560
|
+
self._TravelDate = None
|
36561
|
+
self._TravelLevel = None
|
36520
36562
|
|
36521
36563
|
@property
|
36522
36564
|
def Name(self):
|
@@ -36705,6 +36747,50 @@ class VatElectronicItemInfo(AbstractModel):
|
|
36705
36747
|
def AreaUnit(self, AreaUnit):
|
36706
36748
|
self._AreaUnit = AreaUnit
|
36707
36749
|
|
36750
|
+
@property
|
36751
|
+
def Traveler(self):
|
36752
|
+
"""出行人,仅旅客运输服务发票返回
|
36753
|
+
:rtype: str
|
36754
|
+
"""
|
36755
|
+
return self._Traveler
|
36756
|
+
|
36757
|
+
@Traveler.setter
|
36758
|
+
def Traveler(self, Traveler):
|
36759
|
+
self._Traveler = Traveler
|
36760
|
+
|
36761
|
+
@property
|
36762
|
+
def TravelerID(self):
|
36763
|
+
"""有效身份证件号,仅旅客运输服务发票返回
|
36764
|
+
:rtype: str
|
36765
|
+
"""
|
36766
|
+
return self._TravelerID
|
36767
|
+
|
36768
|
+
@TravelerID.setter
|
36769
|
+
def TravelerID(self, TravelerID):
|
36770
|
+
self._TravelerID = TravelerID
|
36771
|
+
|
36772
|
+
@property
|
36773
|
+
def TravelDate(self):
|
36774
|
+
"""出行日期,仅旅客运输服务发票返回
|
36775
|
+
:rtype: str
|
36776
|
+
"""
|
36777
|
+
return self._TravelDate
|
36778
|
+
|
36779
|
+
@TravelDate.setter
|
36780
|
+
def TravelDate(self, TravelDate):
|
36781
|
+
self._TravelDate = TravelDate
|
36782
|
+
|
36783
|
+
@property
|
36784
|
+
def TravelLevel(self):
|
36785
|
+
"""等级,仅旅客运输服务发票返回
|
36786
|
+
:rtype: str
|
36787
|
+
"""
|
36788
|
+
return self._TravelLevel
|
36789
|
+
|
36790
|
+
@TravelLevel.setter
|
36791
|
+
def TravelLevel(self, TravelLevel):
|
36792
|
+
self._TravelLevel = TravelLevel
|
36793
|
+
|
36708
36794
|
|
36709
36795
|
def _deserialize(self, params):
|
36710
36796
|
self._Name = params.get("Name")
|
@@ -36724,6 +36810,10 @@ class VatElectronicItemInfo(AbstractModel):
|
|
36724
36810
|
self._BuildingName = params.get("BuildingName")
|
36725
36811
|
self._EstateNumber = params.get("EstateNumber")
|
36726
36812
|
self._AreaUnit = params.get("AreaUnit")
|
36813
|
+
self._Traveler = params.get("Traveler")
|
36814
|
+
self._TravelerID = params.get("TravelerID")
|
36815
|
+
self._TravelDate = params.get("TravelDate")
|
36816
|
+
self._TravelLevel = params.get("TravelLevel")
|
36727
36817
|
memeber_set = set(params.keys())
|
36728
36818
|
for name, value in vars(self).items():
|
36729
36819
|
property_name = name[1:]
|