tencentcloud-sdk-python 3.0.1273__py2.py3-none-any.whl → 3.0.1275__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/apigateway/v20180808/apigateway_client.py +46 -0
- tencentcloud/apigateway/v20180808/models.py +362 -0
- tencentcloud/autoscaling/v20180419/models.py +13 -11
- tencentcloud/bi/v20220105/bi_client.py +46 -0
- tencentcloud/bi/v20220105/errorcodes.py +3 -0
- tencentcloud/bi/v20220105/models.py +701 -24
- tencentcloud/billing/v20180709/models.py +105 -114
- tencentcloud/cam/v20190116/models.py +2 -2
- tencentcloud/cdwch/v20200915/errorcodes.py +6 -0
- tencentcloud/cloudhsm/v20191112/models.py +10 -170
- tencentcloud/cls/v20201016/cls_client.py +1 -1
- tencentcloud/cls/v20201016/models.py +16 -4
- tencentcloud/config/v20220802/config_client.py +46 -0
- tencentcloud/config/v20220802/models.py +664 -0
- tencentcloud/dnspod/v20210323/dnspod_client.py +46 -0
- tencentcloud/dnspod/v20210323/models.py +188 -0
- tencentcloud/ess/v20201111/ess_client.py +1 -1
- tencentcloud/ess/v20201111/models.py +20 -12
- tencentcloud/essbasic/v20210526/essbasic_client.py +1 -1
- tencentcloud/essbasic/v20210526/models.py +12 -8
- tencentcloud/goosefs/v20220519/models.py +15 -0
- tencentcloud/gwlb/v20240906/models.py +2 -2
- tencentcloud/hunyuan/v20230901/models.py +21 -4
- tencentcloud/ivld/v20210903/errorcodes.py +2 -2
- tencentcloud/lcic/v20220817/lcic_client.py +46 -0
- tencentcloud/lcic/v20220817/models.py +505 -2
- tencentcloud/lighthouse/v20200324/errorcodes.py +3 -0
- tencentcloud/lighthouse/v20200324/models.py +24 -4
- tencentcloud/live/v20180801/errorcodes.py +12 -0
- tencentcloud/live/v20180801/live_client.py +142 -0
- tencentcloud/live/v20180801/models.py +619 -0
- tencentcloud/lke/v20231130/lke_client.py +1 -1
- tencentcloud/lke/v20231130/models.py +35 -1
- tencentcloud/mps/v20190612/models.py +17 -2
- tencentcloud/oceanus/v20190422/models.py +15 -0
- tencentcloud/ocr/v20181119/models.py +132 -1971
- tencentcloud/ocr/v20181119/ocr_client.py +0 -167
- tencentcloud/organization/v20210331/models.py +2 -330
- tencentcloud/privatedns/v20201028/errorcodes.py +0 -42
- tencentcloud/privatedns/v20201028/models.py +712 -2358
- tencentcloud/privatedns/v20201028/privatedns_client.py +0 -230
- tencentcloud/tke/v20220501/models.py +6 -2
- tencentcloud/trtc/v20190722/errorcodes.py +15 -0
- tencentcloud/trtc/v20190722/models.py +218 -0
- tencentcloud/trtc/v20190722/trtc_client.py +47 -0
- tencentcloud/vod/v20180717/models.py +30 -0
- tencentcloud/vpc/v20170312/models.py +30 -0
- {tencentcloud_sdk_python-3.0.1273.dist-info → tencentcloud_sdk_python-3.0.1275.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1273.dist-info → tencentcloud_sdk_python-3.0.1275.dist-info}/RECORD +53 -53
- {tencentcloud_sdk_python-3.0.1273.dist-info → tencentcloud_sdk_python-3.0.1275.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1273.dist-info → tencentcloud_sdk_python-3.0.1275.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1273.dist-info → tencentcloud_sdk_python-3.0.1275.dist-info}/top_level.txt +0 -0
| @@ -328,13 +328,10 @@ class AllocationAverageData(AbstractModel): | |
| 328 328 | 
             
                def __init__(self):
         | 
| 329 329 | 
             
                    r"""
         | 
| 330 330 | 
             
                    :param _BeginMonth: 起始月份
         | 
| 331 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 332 331 | 
             
                    :type BeginMonth: str
         | 
| 333 332 | 
             
                    :param _EndMonth: 结束月份
         | 
| 334 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 335 333 | 
             
                    :type EndMonth: str
         | 
| 336 334 | 
             
                    :param _RealTotalCost: 合计费用(折后总额)平均值
         | 
| 337 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 338 335 | 
             
                    :type RealTotalCost: str
         | 
| 339 336 | 
             
                    """
         | 
| 340 337 | 
             
                    self._BeginMonth = None
         | 
| @@ -344,7 +341,6 @@ class AllocationAverageData(AbstractModel): | |
| 344 341 | 
             
                @property
         | 
| 345 342 | 
             
                def BeginMonth(self):
         | 
| 346 343 | 
             
                    """起始月份
         | 
| 347 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 348 344 | 
             
                    :rtype: str
         | 
| 349 345 | 
             
                    """
         | 
| 350 346 | 
             
                    return self._BeginMonth
         | 
| @@ -356,7 +352,6 @@ class AllocationAverageData(AbstractModel): | |
| 356 352 | 
             
                @property
         | 
| 357 353 | 
             
                def EndMonth(self):
         | 
| 358 354 | 
             
                    """结束月份
         | 
| 359 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 360 355 | 
             
                    :rtype: str
         | 
| 361 356 | 
             
                    """
         | 
| 362 357 | 
             
                    return self._EndMonth
         | 
| @@ -368,7 +363,6 @@ class AllocationAverageData(AbstractModel): | |
| 368 363 | 
             
                @property
         | 
| 369 364 | 
             
                def RealTotalCost(self):
         | 
| 370 365 | 
             
                    """合计费用(折后总额)平均值
         | 
| 371 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 372 366 | 
             
                    :rtype: str
         | 
| 373 367 | 
             
                    """
         | 
| 374 368 | 
             
                    return self._RealTotalCost
         | 
| @@ -400,13 +394,10 @@ class AllocationBillTrendDetail(AbstractModel): | |
| 400 394 | 
             
                def __init__(self):
         | 
| 401 395 | 
             
                    r"""
         | 
| 402 396 | 
             
                    :param _Month: 账单月份
         | 
| 403 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 404 397 | 
             
                    :type Month: str
         | 
| 405 398 | 
             
                    :param _Name: 账单月份展示名称
         | 
| 406 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 407 399 | 
             
                    :type Name: str
         | 
| 408 400 | 
             
                    :param _RealTotalCost: 合计费用(折后总额):分账单元总费用,归集费用(折后总额) + 分摊费用(折后总额)
         | 
| 409 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 410 401 | 
             
                    :type RealTotalCost: str
         | 
| 411 402 | 
             
                    """
         | 
| 412 403 | 
             
                    self._Month = None
         | 
| @@ -416,7 +407,6 @@ class AllocationBillTrendDetail(AbstractModel): | |
| 416 407 | 
             
                @property
         | 
| 417 408 | 
             
                def Month(self):
         | 
| 418 409 | 
             
                    """账单月份
         | 
| 419 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 420 410 | 
             
                    :rtype: str
         | 
| 421 411 | 
             
                    """
         | 
| 422 412 | 
             
                    return self._Month
         | 
| @@ -428,7 +418,6 @@ class AllocationBillTrendDetail(AbstractModel): | |
| 428 418 | 
             
                @property
         | 
| 429 419 | 
             
                def Name(self):
         | 
| 430 420 | 
             
                    """账单月份展示名称
         | 
| 431 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 432 421 | 
             
                    :rtype: str
         | 
| 433 422 | 
             
                    """
         | 
| 434 423 | 
             
                    return self._Name
         | 
| @@ -440,7 +429,6 @@ class AllocationBillTrendDetail(AbstractModel): | |
| 440 429 | 
             
                @property
         | 
| 441 430 | 
             
                def RealTotalCost(self):
         | 
| 442 431 | 
             
                    """合计费用(折后总额):分账单元总费用,归集费用(折后总额) + 分摊费用(折后总额)
         | 
| 443 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 444 432 | 
             
                    :rtype: str
         | 
| 445 433 | 
             
                    """
         | 
| 446 434 | 
             
                    return self._RealTotalCost
         | 
| @@ -5283,10 +5271,8 @@ class AnalyseActionTypeDetail(AbstractModel): | |
| 5283 5271 | 
             
                def __init__(self):
         | 
| 5284 5272 | 
             
                    r"""
         | 
| 5285 5273 | 
             
                    :param _ActionType: 交易类型code
         | 
| 5286 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5287 5274 | 
             
                    :type ActionType: str
         | 
| 5288 5275 | 
             
                    :param _ActionTypeName: 交易类型Name
         | 
| 5289 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5290 5276 | 
             
                    :type ActionTypeName: str
         | 
| 5291 5277 | 
             
                    """
         | 
| 5292 5278 | 
             
                    self._ActionType = None
         | 
| @@ -5295,7 +5281,6 @@ class AnalyseActionTypeDetail(AbstractModel): | |
| 5295 5281 | 
             
                @property
         | 
| 5296 5282 | 
             
                def ActionType(self):
         | 
| 5297 5283 | 
             
                    """交易类型code
         | 
| 5298 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5299 5284 | 
             
                    :rtype: str
         | 
| 5300 5285 | 
             
                    """
         | 
| 5301 5286 | 
             
                    return self._ActionType
         | 
| @@ -5307,7 +5292,6 @@ class AnalyseActionTypeDetail(AbstractModel): | |
| 5307 5292 | 
             
                @property
         | 
| 5308 5293 | 
             
                def ActionTypeName(self):
         | 
| 5309 5294 | 
             
                    """交易类型Name
         | 
| 5310 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5311 5295 | 
             
                    :rtype: str
         | 
| 5312 5296 | 
             
                    """
         | 
| 5313 5297 | 
             
                    return self._ActionTypeName
         | 
| @@ -5338,10 +5322,8 @@ class AnalyseAmountDetail(AbstractModel): | |
| 5338 5322 | 
             
                def __init__(self):
         | 
| 5339 5323 | 
             
                    r"""
         | 
| 5340 5324 | 
             
                    :param _Key: 费用类型
         | 
| 5341 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5342 5325 | 
             
                    :type Key: str
         | 
| 5343 5326 | 
             
                    :param _Display: 是否展示
         | 
| 5344 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5345 5327 | 
             
                    :type Display: int
         | 
| 5346 5328 | 
             
                    """
         | 
| 5347 5329 | 
             
                    self._Key = None
         | 
| @@ -5350,7 +5332,6 @@ class AnalyseAmountDetail(AbstractModel): | |
| 5350 5332 | 
             
                @property
         | 
| 5351 5333 | 
             
                def Key(self):
         | 
| 5352 5334 | 
             
                    """费用类型
         | 
| 5353 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5354 5335 | 
             
                    :rtype: str
         | 
| 5355 5336 | 
             
                    """
         | 
| 5356 5337 | 
             
                    return self._Key
         | 
| @@ -5362,7 +5343,6 @@ class AnalyseAmountDetail(AbstractModel): | |
| 5362 5343 | 
             
                @property
         | 
| 5363 5344 | 
             
                def Display(self):
         | 
| 5364 5345 | 
             
                    """是否展示
         | 
| 5365 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5366 5346 | 
             
                    :rtype: int
         | 
| 5367 5347 | 
             
                    """
         | 
| 5368 5348 | 
             
                    return self._Display
         | 
| @@ -5393,10 +5373,8 @@ class AnalyseBusinessDetail(AbstractModel): | |
| 5393 5373 | 
             
                def __init__(self):
         | 
| 5394 5374 | 
             
                    r"""
         | 
| 5395 5375 | 
             
                    :param _BusinessCode: 产品码code
         | 
| 5396 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5397 5376 | 
             
                    :type BusinessCode: str
         | 
| 5398 5377 | 
             
                    :param _BusinessCodeName: 产品名称
         | 
| 5399 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5400 5378 | 
             
                    :type BusinessCodeName: str
         | 
| 5401 5379 | 
             
                    """
         | 
| 5402 5380 | 
             
                    self._BusinessCode = None
         | 
| @@ -5405,7 +5383,6 @@ class AnalyseBusinessDetail(AbstractModel): | |
| 5405 5383 | 
             
                @property
         | 
| 5406 5384 | 
             
                def BusinessCode(self):
         | 
| 5407 5385 | 
             
                    """产品码code
         | 
| 5408 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5409 5386 | 
             
                    :rtype: str
         | 
| 5410 5387 | 
             
                    """
         | 
| 5411 5388 | 
             
                    return self._BusinessCode
         | 
| @@ -5417,7 +5394,6 @@ class AnalyseBusinessDetail(AbstractModel): | |
| 5417 5394 | 
             
                @property
         | 
| 5418 5395 | 
             
                def BusinessCodeName(self):
         | 
| 5419 5396 | 
             
                    """产品名称
         | 
| 5420 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5421 5397 | 
             
                    :rtype: str
         | 
| 5422 5398 | 
             
                    """
         | 
| 5423 5399 | 
             
                    return self._BusinessCodeName
         | 
| @@ -5645,31 +5621,22 @@ class AnalyseConditions(AbstractModel): | |
| 5645 5621 | 
             
                def __init__(self):
         | 
| 5646 5622 | 
             
                    r"""
         | 
| 5647 5623 | 
             
                    :param _BusinessCodes: 产品名称代码
         | 
| 5648 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5649 5624 | 
             
                    :type BusinessCodes: str
         | 
| 5650 5625 | 
             
                    :param _ProductCodes: 子产品名称代码
         | 
| 5651 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5652 5626 | 
             
                    :type ProductCodes: str
         | 
| 5653 5627 | 
             
                    :param _ComponentCode: 组件类型代码
         | 
| 5654 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5655 5628 | 
             
                    :type ComponentCode: str
         | 
| 5656 5629 | 
             
                    :param _ZoneIds: 可用区ID:资源所属可用区ID
         | 
| 5657 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5658 5630 | 
             
                    :type ZoneIds: str
         | 
| 5659 5631 | 
             
                    :param _RegionIds: 地域ID:资源所属地域ID
         | 
| 5660 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5661 5632 | 
             
                    :type RegionIds: str
         | 
| 5662 5633 | 
             
                    :param _ProjectIds: 项目ID:资源所属项目ID
         | 
| 5663 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5664 5634 | 
             
                    :type ProjectIds: str
         | 
| 5665 5635 | 
             
                    :param _PayModes: 计费模式 prePay(表示包年包月)/postPay(表示按量计费)
         | 
| 5666 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5667 5636 | 
             
                    :type PayModes: str
         | 
| 5668 5637 | 
             
                    :param _ActionTypes: 交易类型,查询交易类型(请使用交易类型code入参)
         | 
| 5669 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5670 5638 | 
             
                    :type ActionTypes: str
         | 
| 5671 5639 | 
             
                    :param _Tags: 分账标签键
         | 
| 5672 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5673 5640 | 
             
                    :type Tags: str
         | 
| 5674 5641 | 
             
                    :param _FeeType: 费用类型,查询费用类型(请使用费用类型code入参)入参枚举如下:
         | 
| 5675 5642 | 
             
            cashPayAmount:现金 
         | 
| @@ -5677,16 +5644,12 @@ incentivePayAmount:赠送金 | |
| 5677 5644 | 
             
            voucherPayAmount:优惠券 
         | 
| 5678 5645 | 
             
            tax:税金 
         | 
| 5679 5646 | 
             
            costBeforeTax:税前价
         | 
| 5680 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5681 5647 | 
             
                    :type FeeType: str
         | 
| 5682 5648 | 
             
                    :param _PayerUins: 查询成本分析数据的用户UIN
         | 
| 5683 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5684 5649 | 
             
                    :type PayerUins: str
         | 
| 5685 5650 | 
             
                    :param _OwnerUins: 使用资源的用户UIN
         | 
| 5686 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5687 5651 | 
             
                    :type OwnerUins: str
         | 
| 5688 5652 | 
             
                    :param _ConsumptionTypes: 消耗类型,查询消耗类型(请使用消耗类型code入参)
         | 
| 5689 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5690 5653 | 
             
                    :type ConsumptionTypes: str
         | 
| 5691 5654 | 
             
                    """
         | 
| 5692 5655 | 
             
                    self._BusinessCodes = None
         | 
| @@ -5706,7 +5669,6 @@ costBeforeTax:税前价 | |
| 5706 5669 | 
             
                @property
         | 
| 5707 5670 | 
             
                def BusinessCodes(self):
         | 
| 5708 5671 | 
             
                    """产品名称代码
         | 
| 5709 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5710 5672 | 
             
                    :rtype: str
         | 
| 5711 5673 | 
             
                    """
         | 
| 5712 5674 | 
             
                    return self._BusinessCodes
         | 
| @@ -5718,7 +5680,6 @@ costBeforeTax:税前价 | |
| 5718 5680 | 
             
                @property
         | 
| 5719 5681 | 
             
                def ProductCodes(self):
         | 
| 5720 5682 | 
             
                    """子产品名称代码
         | 
| 5721 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5722 5683 | 
             
                    :rtype: str
         | 
| 5723 5684 | 
             
                    """
         | 
| 5724 5685 | 
             
                    return self._ProductCodes
         | 
| @@ -5730,7 +5691,6 @@ costBeforeTax:税前价 | |
| 5730 5691 | 
             
                @property
         | 
| 5731 5692 | 
             
                def ComponentCode(self):
         | 
| 5732 5693 | 
             
                    """组件类型代码
         | 
| 5733 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5734 5694 | 
             
                    :rtype: str
         | 
| 5735 5695 | 
             
                    """
         | 
| 5736 5696 | 
             
                    return self._ComponentCode
         | 
| @@ -5742,7 +5702,6 @@ costBeforeTax:税前价 | |
| 5742 5702 | 
             
                @property
         | 
| 5743 5703 | 
             
                def ZoneIds(self):
         | 
| 5744 5704 | 
             
                    """可用区ID:资源所属可用区ID
         | 
| 5745 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5746 5705 | 
             
                    :rtype: str
         | 
| 5747 5706 | 
             
                    """
         | 
| 5748 5707 | 
             
                    return self._ZoneIds
         | 
| @@ -5754,7 +5713,6 @@ costBeforeTax:税前价 | |
| 5754 5713 | 
             
                @property
         | 
| 5755 5714 | 
             
                def RegionIds(self):
         | 
| 5756 5715 | 
             
                    """地域ID:资源所属地域ID
         | 
| 5757 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5758 5716 | 
             
                    :rtype: str
         | 
| 5759 5717 | 
             
                    """
         | 
| 5760 5718 | 
             
                    return self._RegionIds
         | 
| @@ -5766,7 +5724,6 @@ costBeforeTax:税前价 | |
| 5766 5724 | 
             
                @property
         | 
| 5767 5725 | 
             
                def ProjectIds(self):
         | 
| 5768 5726 | 
             
                    """项目ID:资源所属项目ID
         | 
| 5769 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5770 5727 | 
             
                    :rtype: str
         | 
| 5771 5728 | 
             
                    """
         | 
| 5772 5729 | 
             
                    return self._ProjectIds
         | 
| @@ -5778,7 +5735,6 @@ costBeforeTax:税前价 | |
| 5778 5735 | 
             
                @property
         | 
| 5779 5736 | 
             
                def PayModes(self):
         | 
| 5780 5737 | 
             
                    """计费模式 prePay(表示包年包月)/postPay(表示按量计费)
         | 
| 5781 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5782 5738 | 
             
                    :rtype: str
         | 
| 5783 5739 | 
             
                    """
         | 
| 5784 5740 | 
             
                    return self._PayModes
         | 
| @@ -5790,7 +5746,6 @@ costBeforeTax:税前价 | |
| 5790 5746 | 
             
                @property
         | 
| 5791 5747 | 
             
                def ActionTypes(self):
         | 
| 5792 5748 | 
             
                    """交易类型,查询交易类型(请使用交易类型code入参)
         | 
| 5793 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5794 5749 | 
             
                    :rtype: str
         | 
| 5795 5750 | 
             
                    """
         | 
| 5796 5751 | 
             
                    return self._ActionTypes
         | 
| @@ -5802,7 +5757,6 @@ costBeforeTax:税前价 | |
| 5802 5757 | 
             
                @property
         | 
| 5803 5758 | 
             
                def Tags(self):
         | 
| 5804 5759 | 
             
                    """分账标签键
         | 
| 5805 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5806 5760 | 
             
                    :rtype: str
         | 
| 5807 5761 | 
             
                    """
         | 
| 5808 5762 | 
             
                    return self._Tags
         | 
| @@ -5819,7 +5773,6 @@ incentivePayAmount:赠送金 | |
| 5819 5773 | 
             
            voucherPayAmount:优惠券 
         | 
| 5820 5774 | 
             
            tax:税金 
         | 
| 5821 5775 | 
             
            costBeforeTax:税前价
         | 
| 5822 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5823 5776 | 
             
                    :rtype: str
         | 
| 5824 5777 | 
             
                    """
         | 
| 5825 5778 | 
             
                    return self._FeeType
         | 
| @@ -5831,7 +5784,6 @@ costBeforeTax:税前价 | |
| 5831 5784 | 
             
                @property
         | 
| 5832 5785 | 
             
                def PayerUins(self):
         | 
| 5833 5786 | 
             
                    """查询成本分析数据的用户UIN
         | 
| 5834 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5835 5787 | 
             
                    :rtype: str
         | 
| 5836 5788 | 
             
                    """
         | 
| 5837 5789 | 
             
                    return self._PayerUins
         | 
| @@ -5843,7 +5795,6 @@ costBeforeTax:税前价 | |
| 5843 5795 | 
             
                @property
         | 
| 5844 5796 | 
             
                def OwnerUins(self):
         | 
| 5845 5797 | 
             
                    """使用资源的用户UIN
         | 
| 5846 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5847 5798 | 
             
                    :rtype: str
         | 
| 5848 5799 | 
             
                    """
         | 
| 5849 5800 | 
             
                    return self._OwnerUins
         | 
| @@ -5855,7 +5806,6 @@ costBeforeTax:税前价 | |
| 5855 5806 | 
             
                @property
         | 
| 5856 5807 | 
             
                def ConsumptionTypes(self):
         | 
| 5857 5808 | 
             
                    """消耗类型,查询消耗类型(请使用消耗类型code入参)
         | 
| 5858 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5859 5809 | 
             
                    :rtype: str
         | 
| 5860 5810 | 
             
                    """
         | 
| 5861 5811 | 
             
                    return self._ConsumptionTypes
         | 
| @@ -5970,13 +5920,10 @@ class AnalyseHeaderDetail(AbstractModel): | |
| 5970 5920 | 
             
                def __init__(self):
         | 
| 5971 5921 | 
             
                    r"""
         | 
| 5972 5922 | 
             
                    :param _HeadDetail: 表头日期
         | 
| 5973 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5974 5923 | 
             
                    :type HeadDetail: list of AnalyseHeaderTimeDetail
         | 
| 5975 5924 | 
             
                    :param _Name: 时间
         | 
| 5976 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5977 5925 | 
             
                    :type Name: str
         | 
| 5978 5926 | 
             
                    :param _Total: 总计
         | 
| 5979 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5980 5927 | 
             
                    :type Total: str
         | 
| 5981 5928 | 
             
                    """
         | 
| 5982 5929 | 
             
                    self._HeadDetail = None
         | 
| @@ -5986,7 +5933,6 @@ class AnalyseHeaderDetail(AbstractModel): | |
| 5986 5933 | 
             
                @property
         | 
| 5987 5934 | 
             
                def HeadDetail(self):
         | 
| 5988 5935 | 
             
                    """表头日期
         | 
| 5989 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5990 5936 | 
             
                    :rtype: list of AnalyseHeaderTimeDetail
         | 
| 5991 5937 | 
             
                    """
         | 
| 5992 5938 | 
             
                    return self._HeadDetail
         | 
| @@ -5998,7 +5944,6 @@ class AnalyseHeaderDetail(AbstractModel): | |
| 5998 5944 | 
             
                @property
         | 
| 5999 5945 | 
             
                def Name(self):
         | 
| 6000 5946 | 
             
                    """时间
         | 
| 6001 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6002 5947 | 
             
                    :rtype: str
         | 
| 6003 5948 | 
             
                    """
         | 
| 6004 5949 | 
             
                    return self._Name
         | 
| @@ -6010,7 +5955,6 @@ class AnalyseHeaderDetail(AbstractModel): | |
| 6010 5955 | 
             
                @property
         | 
| 6011 5956 | 
             
                def Total(self):
         | 
| 6012 5957 | 
             
                    """总计
         | 
| 6013 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6014 5958 | 
             
                    :rtype: str
         | 
| 6015 5959 | 
             
                    """
         | 
| 6016 5960 | 
             
                    return self._Total
         | 
| @@ -6047,7 +5991,6 @@ class AnalyseHeaderTimeDetail(AbstractModel): | |
| 6047 5991 | 
             
                def __init__(self):
         | 
| 6048 5992 | 
             
                    r"""
         | 
| 6049 5993 | 
             
                    :param _Name: 日期
         | 
| 6050 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6051 5994 | 
             
                    :type Name: str
         | 
| 6052 5995 | 
             
                    """
         | 
| 6053 5996 | 
             
                    self._Name = None
         | 
| @@ -6055,7 +5998,6 @@ class AnalyseHeaderTimeDetail(AbstractModel): | |
| 6055 5998 | 
             
                @property
         | 
| 6056 5999 | 
             
                def Name(self):
         | 
| 6057 6000 | 
             
                    """日期
         | 
| 6058 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6059 6001 | 
             
                    :rtype: str
         | 
| 6060 6002 | 
             
                    """
         | 
| 6061 6003 | 
             
                    return self._Name
         | 
| @@ -6085,7 +6027,6 @@ class AnalyseOwnerUinDetail(AbstractModel): | |
| 6085 6027 | 
             
                def __init__(self):
         | 
| 6086 6028 | 
             
                    r"""
         | 
| 6087 6029 | 
             
                    :param _OwnerUin: 使用者uin
         | 
| 6088 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6089 6030 | 
             
                    :type OwnerUin: str
         | 
| 6090 6031 | 
             
                    """
         | 
| 6091 6032 | 
             
                    self._OwnerUin = None
         | 
| @@ -6093,7 +6034,6 @@ class AnalyseOwnerUinDetail(AbstractModel): | |
| 6093 6034 | 
             
                @property
         | 
| 6094 6035 | 
             
                def OwnerUin(self):
         | 
| 6095 6036 | 
             
                    """使用者uin
         | 
| 6096 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6097 6037 | 
             
                    :rtype: str
         | 
| 6098 6038 | 
             
                    """
         | 
| 6099 6039 | 
             
                    return self._OwnerUin
         | 
| @@ -6123,10 +6063,8 @@ class AnalysePayModeDetail(AbstractModel): | |
| 6123 6063 | 
             
                def __init__(self):
         | 
| 6124 6064 | 
             
                    r"""
         | 
| 6125 6065 | 
             
                    :param _PayMode: 计费模式code
         | 
| 6126 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6127 6066 | 
             
                    :type PayMode: str
         | 
| 6128 6067 | 
             
                    :param _PayModeName: 计费模式Name
         | 
| 6129 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6130 6068 | 
             
                    :type PayModeName: str
         | 
| 6131 6069 | 
             
                    """
         | 
| 6132 6070 | 
             
                    self._PayMode = None
         | 
| @@ -6135,7 +6073,6 @@ class AnalysePayModeDetail(AbstractModel): | |
| 6135 6073 | 
             
                @property
         | 
| 6136 6074 | 
             
                def PayMode(self):
         | 
| 6137 6075 | 
             
                    """计费模式code
         | 
| 6138 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6139 6076 | 
             
                    :rtype: str
         | 
| 6140 6077 | 
             
                    """
         | 
| 6141 6078 | 
             
                    return self._PayMode
         | 
| @@ -6147,7 +6084,6 @@ class AnalysePayModeDetail(AbstractModel): | |
| 6147 6084 | 
             
                @property
         | 
| 6148 6085 | 
             
                def PayModeName(self):
         | 
| 6149 6086 | 
             
                    """计费模式Name
         | 
| 6150 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6151 6087 | 
             
                    :rtype: str
         | 
| 6152 6088 | 
             
                    """
         | 
| 6153 6089 | 
             
                    return self._PayModeName
         | 
| @@ -6178,10 +6114,8 @@ class AnalyseProjectDetail(AbstractModel): | |
| 6178 6114 | 
             
                def __init__(self):
         | 
| 6179 6115 | 
             
                    r"""
         | 
| 6180 6116 | 
             
                    :param _ProjectId: 项目id
         | 
| 6181 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6182 6117 | 
             
                    :type ProjectId: str
         | 
| 6183 6118 | 
             
                    :param _ProjectName: 默认项目
         | 
| 6184 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6185 6119 | 
             
                    :type ProjectName: str
         | 
| 6186 6120 | 
             
                    """
         | 
| 6187 6121 | 
             
                    self._ProjectId = None
         | 
| @@ -6190,7 +6124,6 @@ class AnalyseProjectDetail(AbstractModel): | |
| 6190 6124 | 
             
                @property
         | 
| 6191 6125 | 
             
                def ProjectId(self):
         | 
| 6192 6126 | 
             
                    """项目id
         | 
| 6193 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6194 6127 | 
             
                    :rtype: str
         | 
| 6195 6128 | 
             
                    """
         | 
| 6196 6129 | 
             
                    return self._ProjectId
         | 
| @@ -6202,7 +6135,6 @@ class AnalyseProjectDetail(AbstractModel): | |
| 6202 6135 | 
             
                @property
         | 
| 6203 6136 | 
             
                def ProjectName(self):
         | 
| 6204 6137 | 
             
                    """默认项目
         | 
| 6205 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6206 6138 | 
             
                    :rtype: str
         | 
| 6207 6139 | 
             
                    """
         | 
| 6208 6140 | 
             
                    return self._ProjectName
         | 
| @@ -6233,10 +6165,8 @@ class AnalyseRegionDetail(AbstractModel): | |
| 6233 6165 | 
             
                def __init__(self):
         | 
| 6234 6166 | 
             
                    r"""
         | 
| 6235 6167 | 
             
                    :param _RegionId: 地域id
         | 
| 6236 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6237 6168 | 
             
                    :type RegionId: str
         | 
| 6238 6169 | 
             
                    :param _RegionName: 地域名称
         | 
| 6239 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6240 6170 | 
             
                    :type RegionName: str
         | 
| 6241 6171 | 
             
                    """
         | 
| 6242 6172 | 
             
                    self._RegionId = None
         | 
| @@ -6245,7 +6175,6 @@ class AnalyseRegionDetail(AbstractModel): | |
| 6245 6175 | 
             
                @property
         | 
| 6246 6176 | 
             
                def RegionId(self):
         | 
| 6247 6177 | 
             
                    """地域id
         | 
| 6248 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6249 6178 | 
             
                    :rtype: str
         | 
| 6250 6179 | 
             
                    """
         | 
| 6251 6180 | 
             
                    return self._RegionId
         | 
| @@ -6257,7 +6186,6 @@ class AnalyseRegionDetail(AbstractModel): | |
| 6257 6186 | 
             
                @property
         | 
| 6258 6187 | 
             
                def RegionName(self):
         | 
| 6259 6188 | 
             
                    """地域名称
         | 
| 6260 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6261 6189 | 
             
                    :rtype: str
         | 
| 6262 6190 | 
             
                    """
         | 
| 6263 6191 | 
             
                    return self._RegionName
         | 
| @@ -6288,10 +6216,8 @@ class AnalyseTimeDetail(AbstractModel): | |
| 6288 6216 | 
             
                def __init__(self):
         | 
| 6289 6217 | 
             
                    r"""
         | 
| 6290 6218 | 
             
                    :param _Time: 日期
         | 
| 6291 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6292 6219 | 
             
                    :type Time: str
         | 
| 6293 6220 | 
             
                    :param _Money: 金额
         | 
| 6294 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6295 6221 | 
             
                    :type Money: str
         | 
| 6296 6222 | 
             
                    """
         | 
| 6297 6223 | 
             
                    self._Time = None
         | 
| @@ -6300,7 +6226,6 @@ class AnalyseTimeDetail(AbstractModel): | |
| 6300 6226 | 
             
                @property
         | 
| 6301 6227 | 
             
                def Time(self):
         | 
| 6302 6228 | 
             
                    """日期
         | 
| 6303 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6304 6229 | 
             
                    :rtype: str
         | 
| 6305 6230 | 
             
                    """
         | 
| 6306 6231 | 
             
                    return self._Time
         | 
| @@ -6312,7 +6237,6 @@ class AnalyseTimeDetail(AbstractModel): | |
| 6312 6237 | 
             
                @property
         | 
| 6313 6238 | 
             
                def Money(self):
         | 
| 6314 6239 | 
             
                    """金额
         | 
| 6315 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6316 6240 | 
             
                    :rtype: str
         | 
| 6317 6241 | 
             
                    """
         | 
| 6318 6242 | 
             
                    return self._Money
         | 
| @@ -6343,10 +6267,8 @@ class AnalyseZoneDetail(AbstractModel): | |
| 6343 6267 | 
             
                def __init__(self):
         | 
| 6344 6268 | 
             
                    r"""
         | 
| 6345 6269 | 
             
                    :param _ZoneId: 可用区id
         | 
| 6346 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6347 6270 | 
             
                    :type ZoneId: str
         | 
| 6348 6271 | 
             
                    :param _ZoneName: 可用区Name
         | 
| 6349 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6350 6272 | 
             
                    :type ZoneName: str
         | 
| 6351 6273 | 
             
                    """
         | 
| 6352 6274 | 
             
                    self._ZoneId = None
         | 
| @@ -6355,7 +6277,6 @@ class AnalyseZoneDetail(AbstractModel): | |
| 6355 6277 | 
             
                @property
         | 
| 6356 6278 | 
             
                def ZoneId(self):
         | 
| 6357 6279 | 
             
                    """可用区id
         | 
| 6358 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6359 6280 | 
             
                    :rtype: str
         | 
| 6360 6281 | 
             
                    """
         | 
| 6361 6282 | 
             
                    return self._ZoneId
         | 
| @@ -6367,7 +6288,6 @@ class AnalyseZoneDetail(AbstractModel): | |
| 6367 6288 | 
             
                @property
         | 
| 6368 6289 | 
             
                def ZoneName(self):
         | 
| 6369 6290 | 
             
                    """可用区Name
         | 
| 6370 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6371 6291 | 
             
                    :rtype: str
         | 
| 6372 6292 | 
             
                    """
         | 
| 6373 6293 | 
             
                    return self._ZoneName
         | 
| @@ -6556,11 +6476,39 @@ class BillBusinessLink(AbstractModel): | |
| 6556 6476 |  | 
| 6557 6477 | 
             
                def __init__(self):
         | 
| 6558 6478 | 
             
                    r"""
         | 
| 6479 | 
            +
                    :param _BusinessCode: 产品编码
         | 
| 6480 | 
            +
                    :type BusinessCode: str
         | 
| 6481 | 
            +
                    :param _BusinessCodeName: 产品名称
         | 
| 6482 | 
            +
                    :type BusinessCodeName: str
         | 
| 6559 6483 | 
             
                    :param _Children: 子产品
         | 
| 6560 6484 | 
             
                    :type Children: list of BillProductLink
         | 
| 6561 6485 | 
             
                    """
         | 
| 6486 | 
            +
                    self._BusinessCode = None
         | 
| 6487 | 
            +
                    self._BusinessCodeName = None
         | 
| 6562 6488 | 
             
                    self._Children = None
         | 
| 6563 6489 |  | 
| 6490 | 
            +
                @property
         | 
| 6491 | 
            +
                def BusinessCode(self):
         | 
| 6492 | 
            +
                    """产品编码
         | 
| 6493 | 
            +
                    :rtype: str
         | 
| 6494 | 
            +
                    """
         | 
| 6495 | 
            +
                    return self._BusinessCode
         | 
| 6496 | 
            +
             | 
| 6497 | 
            +
                @BusinessCode.setter
         | 
| 6498 | 
            +
                def BusinessCode(self, BusinessCode):
         | 
| 6499 | 
            +
                    self._BusinessCode = BusinessCode
         | 
| 6500 | 
            +
             | 
| 6501 | 
            +
                @property
         | 
| 6502 | 
            +
                def BusinessCodeName(self):
         | 
| 6503 | 
            +
                    """产品名称
         | 
| 6504 | 
            +
                    :rtype: str
         | 
| 6505 | 
            +
                    """
         | 
| 6506 | 
            +
                    return self._BusinessCodeName
         | 
| 6507 | 
            +
             | 
| 6508 | 
            +
                @BusinessCodeName.setter
         | 
| 6509 | 
            +
                def BusinessCodeName(self, BusinessCodeName):
         | 
| 6510 | 
            +
                    self._BusinessCodeName = BusinessCodeName
         | 
| 6511 | 
            +
             | 
| 6564 6512 | 
             
                @property
         | 
| 6565 6513 | 
             
                def Children(self):
         | 
| 6566 6514 | 
             
                    """子产品
         | 
| @@ -6574,6 +6522,8 @@ class BillBusinessLink(AbstractModel): | |
| 6574 6522 |  | 
| 6575 6523 |  | 
| 6576 6524 | 
             
                def _deserialize(self, params):
         | 
| 6525 | 
            +
                    self._BusinessCode = params.get("BusinessCode")
         | 
| 6526 | 
            +
                    self._BusinessCodeName = params.get("BusinessCodeName")
         | 
| 6577 6527 | 
             
                    if params.get("Children") is not None:
         | 
| 6578 6528 | 
             
                        self._Children = []
         | 
| 6579 6529 | 
             
                        for item in params.get("Children"):
         | 
| @@ -8837,6 +8787,77 @@ class BillProductLink(AbstractModel): | |
| 8837 8787 |  | 
| 8838 8788 | 
             
                """
         | 
| 8839 8789 |  | 
| 8790 | 
            +
                def __init__(self):
         | 
| 8791 | 
            +
                    r"""
         | 
| 8792 | 
            +
                    :param _ProductCode: 子产品编码
         | 
| 8793 | 
            +
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 8794 | 
            +
                    :type ProductCode: str
         | 
| 8795 | 
            +
                    :param _ProductCodeName: 子产品名称
         | 
| 8796 | 
            +
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 8797 | 
            +
                    :type ProductCodeName: str
         | 
| 8798 | 
            +
                    :param _Children: 组件名称
         | 
| 8799 | 
            +
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 8800 | 
            +
                    :type Children: list of BillItem
         | 
| 8801 | 
            +
                    """
         | 
| 8802 | 
            +
                    self._ProductCode = None
         | 
| 8803 | 
            +
                    self._ProductCodeName = None
         | 
| 8804 | 
            +
                    self._Children = None
         | 
| 8805 | 
            +
             | 
| 8806 | 
            +
                @property
         | 
| 8807 | 
            +
                def ProductCode(self):
         | 
| 8808 | 
            +
                    """子产品编码
         | 
| 8809 | 
            +
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 8810 | 
            +
                    :rtype: str
         | 
| 8811 | 
            +
                    """
         | 
| 8812 | 
            +
                    return self._ProductCode
         | 
| 8813 | 
            +
             | 
| 8814 | 
            +
                @ProductCode.setter
         | 
| 8815 | 
            +
                def ProductCode(self, ProductCode):
         | 
| 8816 | 
            +
                    self._ProductCode = ProductCode
         | 
| 8817 | 
            +
             | 
| 8818 | 
            +
                @property
         | 
| 8819 | 
            +
                def ProductCodeName(self):
         | 
| 8820 | 
            +
                    """子产品名称
         | 
| 8821 | 
            +
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 8822 | 
            +
                    :rtype: str
         | 
| 8823 | 
            +
                    """
         | 
| 8824 | 
            +
                    return self._ProductCodeName
         | 
| 8825 | 
            +
             | 
| 8826 | 
            +
                @ProductCodeName.setter
         | 
| 8827 | 
            +
                def ProductCodeName(self, ProductCodeName):
         | 
| 8828 | 
            +
                    self._ProductCodeName = ProductCodeName
         | 
| 8829 | 
            +
             | 
| 8830 | 
            +
                @property
         | 
| 8831 | 
            +
                def Children(self):
         | 
| 8832 | 
            +
                    """组件名称
         | 
| 8833 | 
            +
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 8834 | 
            +
                    :rtype: list of BillItem
         | 
| 8835 | 
            +
                    """
         | 
| 8836 | 
            +
                    return self._Children
         | 
| 8837 | 
            +
             | 
| 8838 | 
            +
                @Children.setter
         | 
| 8839 | 
            +
                def Children(self, Children):
         | 
| 8840 | 
            +
                    self._Children = Children
         | 
| 8841 | 
            +
             | 
| 8842 | 
            +
             | 
| 8843 | 
            +
                def _deserialize(self, params):
         | 
| 8844 | 
            +
                    self._ProductCode = params.get("ProductCode")
         | 
| 8845 | 
            +
                    self._ProductCodeName = params.get("ProductCodeName")
         | 
| 8846 | 
            +
                    if params.get("Children") is not None:
         | 
| 8847 | 
            +
                        self._Children = []
         | 
| 8848 | 
            +
                        for item in params.get("Children"):
         | 
| 8849 | 
            +
                            obj = BillItem()
         | 
| 8850 | 
            +
                            obj._deserialize(item)
         | 
| 8851 | 
            +
                            self._Children.append(obj)
         | 
| 8852 | 
            +
                    memeber_set = set(params.keys())
         | 
| 8853 | 
            +
                    for name, value in vars(self).items():
         | 
| 8854 | 
            +
                        property_name = name[1:]
         | 
| 8855 | 
            +
                        if property_name in memeber_set:
         | 
| 8856 | 
            +
                            memeber_set.remove(property_name)
         | 
| 8857 | 
            +
                    if len(memeber_set) > 0:
         | 
| 8858 | 
            +
                        warnings.warn("%s fileds are useless." % ",".join(memeber_set))
         | 
| 8859 | 
            +
                    
         | 
| 8860 | 
            +
             | 
| 8840 8861 |  | 
| 8841 8862 | 
             
            class BillProject(AbstractModel):
         | 
| 8842 8863 | 
             
                """项目筛选列表
         | 
| @@ -21005,7 +21026,7 @@ class DescribeCostSummaryByProjectResponse(AbstractModel): | |
| 21005 21026 | 
             
                    :type Total: :class:`tencentcloud.billing.v20180709.models.ConsumptionSummaryTotal`
         | 
| 21006 21027 | 
             
                    :param _Data: 消耗按业务汇总详情
         | 
| 21007 21028 | 
             
                    :type Data: list of ConsumptionProjectSummaryDataItem
         | 
| 21008 | 
            -
                    :param _RecordNum: 记录数量,NeedRecordNum为0 | 
| 21029 | 
            +
                    :param _RecordNum: 记录数量,NeedRecordNum为0时返回null
         | 
| 21009 21030 | 
             
                    :type RecordNum: int
         | 
| 21010 21031 | 
             
                    :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
         | 
| 21011 21032 | 
             
                    :type RequestId: str
         | 
| @@ -21051,7 +21072,7 @@ class DescribeCostSummaryByProjectResponse(AbstractModel): | |
| 21051 21072 |  | 
| 21052 21073 | 
             
                @property
         | 
| 21053 21074 | 
             
                def RecordNum(self):
         | 
| 21054 | 
            -
                    """记录数量,NeedRecordNum为0 | 
| 21075 | 
            +
                    """记录数量,NeedRecordNum为0时返回null
         | 
| 21055 21076 | 
             
                    :rtype: int
         | 
| 21056 21077 | 
             
                    """
         | 
| 21057 21078 | 
             
                    return self._RecordNum
         | 
| @@ -21211,7 +21232,7 @@ class DescribeCostSummaryByRegionResponse(AbstractModel): | |
| 21211 21232 | 
             
                    :type Total: :class:`tencentcloud.billing.v20180709.models.ConsumptionSummaryTotal`
         | 
| 21212 21233 | 
             
                    :param _Data: 消耗按地域汇总详情
         | 
| 21213 21234 | 
             
                    :type Data: list of ConsumptionRegionSummaryDataItem
         | 
| 21214 | 
            -
                    :param _RecordNum: 记录数量,NeedRecordNum为0 | 
| 21235 | 
            +
                    :param _RecordNum: 记录数量,NeedRecordNum为0时返回null
         | 
| 21215 21236 | 
             
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 21216 21237 | 
             
                    :type RecordNum: int
         | 
| 21217 21238 | 
             
                    :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
         | 
| @@ -21258,7 +21279,7 @@ class DescribeCostSummaryByRegionResponse(AbstractModel): | |
| 21258 21279 |  | 
| 21259 21280 | 
             
                @property
         | 
| 21260 21281 | 
             
                def RecordNum(self):
         | 
| 21261 | 
            -
                    """记录数量,NeedRecordNum为0 | 
| 21282 | 
            +
                    """记录数量,NeedRecordNum为0时返回null
         | 
| 21262 21283 | 
             
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 21263 21284 | 
             
                    :rtype: int
         | 
| 21264 21285 | 
             
                    """
         | 
| @@ -24325,7 +24346,6 @@ class DescribeVoucherUsageDetailsResponse(AbstractModel): | |
| 24325 24346 | 
             
                    :param _TotalUsedAmount: 总已用金额(微分)
         | 
| 24326 24347 | 
             
                    :type TotalUsedAmount: int
         | 
| 24327 24348 | 
             
                    :param _UsageRecords: 代金券使用记录细节
         | 
| 24328 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 24329 24349 | 
             
                    :type UsageRecords: list of UsageRecords
         | 
| 24330 24350 | 
             
                    :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
         | 
| 24331 24351 | 
             
                    :type RequestId: str
         | 
| @@ -24360,7 +24380,6 @@ class DescribeVoucherUsageDetailsResponse(AbstractModel): | |
| 24360 24380 | 
             
                @property
         | 
| 24361 24381 | 
             
                def UsageRecords(self):
         | 
| 24362 24382 | 
             
                    """代金券使用记录细节
         | 
| 24363 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 24364 24383 | 
             
                    :rtype: list of UsageRecords
         | 
| 24365 24384 | 
             
                    """
         | 
| 24366 24385 | 
             
                    return self._UsageRecords
         | 
| @@ -27563,34 +27582,24 @@ class UsageDetails(AbstractModel): | |
| 27563 27582 | 
             
                def __init__(self):
         | 
| 27564 27583 | 
             
                    r"""
         | 
| 27565 27584 | 
             
                    :param _ProductName: 商品名
         | 
| 27566 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 27567 27585 | 
             
                    :type ProductName: str
         | 
| 27568 27586 | 
             
                    :param _SubProductName: 商品细节
         | 
| 27569 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 27570 27587 | 
             
                    :type SubProductName: str
         | 
| 27571 27588 | 
             
                    :param _ProductCode: 产品码	
         | 
| 27572 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 27573 27589 | 
             
                    :type ProductCode: str
         | 
| 27574 27590 | 
             
                    :param _SubProductCode: 子产品码	
         | 
| 27575 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 27576 27591 | 
             
                    :type SubProductCode: str
         | 
| 27577 27592 | 
             
                    :param _BillingItemCode: 计费项码	
         | 
| 27578 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 27579 27593 | 
             
                    :type BillingItemCode: str
         | 
| 27580 27594 | 
             
                    :param _SubBillingItemCode: 计费细项码	
         | 
| 27581 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 27582 27595 | 
             
                    :type SubBillingItemCode: str
         | 
| 27583 27596 | 
             
                    :param _ProductEnName: 产品英文名	
         | 
| 27584 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 27585 27597 | 
             
                    :type ProductEnName: str
         | 
| 27586 27598 | 
             
                    :param _SubProductEnName: 子产品英文名	
         | 
| 27587 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 27588 27599 | 
             
                    :type SubProductEnName: str
         | 
| 27589 27600 | 
             
                    :param _CalcUnit: 结算周期	
         | 
| 27590 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 27591 27601 | 
             
                    :type CalcUnit: str
         | 
| 27592 27602 | 
             
                    :param _Action: payMode为prepay 且 payScene为common的情况下存在
         | 
| 27593 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 27594 27603 | 
             
                    :type Action: str
         | 
| 27595 27604 | 
             
                    """
         | 
| 27596 27605 | 
             
                    self._ProductName = None
         | 
| @@ -27607,7 +27616,6 @@ class UsageDetails(AbstractModel): | |
| 27607 27616 | 
             
                @property
         | 
| 27608 27617 | 
             
                def ProductName(self):
         | 
| 27609 27618 | 
             
                    """商品名
         | 
| 27610 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 27611 27619 | 
             
                    :rtype: str
         | 
| 27612 27620 | 
             
                    """
         | 
| 27613 27621 | 
             
                    return self._ProductName
         | 
| @@ -27619,7 +27627,6 @@ class UsageDetails(AbstractModel): | |
| 27619 27627 | 
             
                @property
         | 
| 27620 27628 | 
             
                def SubProductName(self):
         | 
| 27621 27629 | 
             
                    """商品细节
         | 
| 27622 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 27623 27630 | 
             
                    :rtype: str
         | 
| 27624 27631 | 
             
                    """
         | 
| 27625 27632 | 
             
                    return self._SubProductName
         | 
| @@ -27631,7 +27638,6 @@ class UsageDetails(AbstractModel): | |
| 27631 27638 | 
             
                @property
         | 
| 27632 27639 | 
             
                def ProductCode(self):
         | 
| 27633 27640 | 
             
                    """产品码	
         | 
| 27634 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 27635 27641 | 
             
                    :rtype: str
         | 
| 27636 27642 | 
             
                    """
         | 
| 27637 27643 | 
             
                    return self._ProductCode
         | 
| @@ -27643,7 +27649,6 @@ class UsageDetails(AbstractModel): | |
| 27643 27649 | 
             
                @property
         | 
| 27644 27650 | 
             
                def SubProductCode(self):
         | 
| 27645 27651 | 
             
                    """子产品码	
         | 
| 27646 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 27647 27652 | 
             
                    :rtype: str
         | 
| 27648 27653 | 
             
                    """
         | 
| 27649 27654 | 
             
                    return self._SubProductCode
         | 
| @@ -27655,7 +27660,6 @@ class UsageDetails(AbstractModel): | |
| 27655 27660 | 
             
                @property
         | 
| 27656 27661 | 
             
                def BillingItemCode(self):
         | 
| 27657 27662 | 
             
                    """计费项码	
         | 
| 27658 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 27659 27663 | 
             
                    :rtype: str
         | 
| 27660 27664 | 
             
                    """
         | 
| 27661 27665 | 
             
                    return self._BillingItemCode
         | 
| @@ -27667,7 +27671,6 @@ class UsageDetails(AbstractModel): | |
| 27667 27671 | 
             
                @property
         | 
| 27668 27672 | 
             
                def SubBillingItemCode(self):
         | 
| 27669 27673 | 
             
                    """计费细项码	
         | 
| 27670 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 27671 27674 | 
             
                    :rtype: str
         | 
| 27672 27675 | 
             
                    """
         | 
| 27673 27676 | 
             
                    return self._SubBillingItemCode
         | 
| @@ -27679,7 +27682,6 @@ class UsageDetails(AbstractModel): | |
| 27679 27682 | 
             
                @property
         | 
| 27680 27683 | 
             
                def ProductEnName(self):
         | 
| 27681 27684 | 
             
                    """产品英文名	
         | 
| 27682 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 27683 27685 | 
             
                    :rtype: str
         | 
| 27684 27686 | 
             
                    """
         | 
| 27685 27687 | 
             
                    return self._ProductEnName
         | 
| @@ -27691,7 +27693,6 @@ class UsageDetails(AbstractModel): | |
| 27691 27693 | 
             
                @property
         | 
| 27692 27694 | 
             
                def SubProductEnName(self):
         | 
| 27693 27695 | 
             
                    """子产品英文名	
         | 
| 27694 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 27695 27696 | 
             
                    :rtype: str
         | 
| 27696 27697 | 
             
                    """
         | 
| 27697 27698 | 
             
                    return self._SubProductEnName
         | 
| @@ -27703,7 +27704,6 @@ class UsageDetails(AbstractModel): | |
| 27703 27704 | 
             
                @property
         | 
| 27704 27705 | 
             
                def CalcUnit(self):
         | 
| 27705 27706 | 
             
                    """结算周期	
         | 
| 27706 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 27707 27707 | 
             
                    :rtype: str
         | 
| 27708 27708 | 
             
                    """
         | 
| 27709 27709 | 
             
                    return self._CalcUnit
         | 
| @@ -27715,7 +27715,6 @@ class UsageDetails(AbstractModel): | |
| 27715 27715 | 
             
                @property
         | 
| 27716 27716 | 
             
                def Action(self):
         | 
| 27717 27717 | 
             
                    """payMode为prepay 且 payScene为common的情况下存在
         | 
| 27718 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 27719 27718 | 
             
                    :rtype: str
         | 
| 27720 27719 | 
             
                    """
         | 
| 27721 27720 | 
             
                    return self._Action
         | 
| @@ -27758,18 +27757,14 @@ class UsageRecords(AbstractModel): | |
| 27758 27757 | 
             
                    :param _UsedTime: 使用时间
         | 
| 27759 27758 | 
             
                    :type UsedTime: str
         | 
| 27760 27759 | 
             
                    :param _UsageDetails: 使用记录细节
         | 
| 27761 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 27762 27760 | 
             
                    :type UsageDetails: list of UsageDetails
         | 
| 27763 27761 | 
             
                    :param _PayMode: 付费模式
         | 
| 27764 27762 | 
             
                    :type PayMode: str
         | 
| 27765 27763 | 
             
                    :param _VoucherId: 查询的券id
         | 
| 27766 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 27767 27764 | 
             
                    :type VoucherId: str
         | 
| 27768 27765 | 
             
                    :param _PayScene: 交易场景:(adjust:调账、common:正常交易场景)
         | 
| 27769 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 27770 27766 | 
             
                    :type PayScene: str
         | 
| 27771 27767 | 
             
                    :param _SeqId: 唯一id,对应交易:预付费的dealName,调账/后付费的outTradeNo
         | 
| 27772 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 27773 27768 | 
             
                    :type SeqId: str
         | 
| 27774 27769 | 
             
                    """
         | 
| 27775 27770 | 
             
                    self._UsedAmount = None
         | 
| @@ -27805,7 +27800,6 @@ class UsageRecords(AbstractModel): | |
| 27805 27800 | 
             
                @property
         | 
| 27806 27801 | 
             
                def UsageDetails(self):
         | 
| 27807 27802 | 
             
                    """使用记录细节
         | 
| 27808 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 27809 27803 | 
             
                    :rtype: list of UsageDetails
         | 
| 27810 27804 | 
             
                    """
         | 
| 27811 27805 | 
             
                    return self._UsageDetails
         | 
| @@ -27828,7 +27822,6 @@ class UsageRecords(AbstractModel): | |
| 27828 27822 | 
             
                @property
         | 
| 27829 27823 | 
             
                def VoucherId(self):
         | 
| 27830 27824 | 
             
                    """查询的券id
         | 
| 27831 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 27832 27825 | 
             
                    :rtype: str
         | 
| 27833 27826 | 
             
                    """
         | 
| 27834 27827 | 
             
                    return self._VoucherId
         | 
| @@ -27840,7 +27833,6 @@ class UsageRecords(AbstractModel): | |
| 27840 27833 | 
             
                @property
         | 
| 27841 27834 | 
             
                def PayScene(self):
         | 
| 27842 27835 | 
             
                    """交易场景:(adjust:调账、common:正常交易场景)
         | 
| 27843 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 27844 27836 | 
             
                    :rtype: str
         | 
| 27845 27837 | 
             
                    """
         | 
| 27846 27838 | 
             
                    return self._PayScene
         | 
| @@ -27852,7 +27844,6 @@ class UsageRecords(AbstractModel): | |
| 27852 27844 | 
             
                @property
         | 
| 27853 27845 | 
             
                def SeqId(self):
         | 
| 27854 27846 | 
             
                    """唯一id,对应交易:预付费的dealName,调账/后付费的outTradeNo
         | 
| 27855 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 27856 27847 | 
             
                    :rtype: str
         | 
| 27857 27848 | 
             
                    """
         | 
| 27858 27849 | 
             
                    return self._SeqId
         |