tencentcloud-sdk-python-svp 3.0.1261__py2.py3-none-any.whl → 3.0.1263__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 CHANGED
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1261'
17
+ __version__ = '3.0.1263'
@@ -56,6 +56,9 @@ class CreateSavingPlanOrderRequest(AbstractModel):
56
56
 
57
57
  @property
58
58
  def RegionId(self):
59
+ """地域编码
60
+ :rtype: int
61
+ """
59
62
  return self._RegionId
60
63
 
61
64
  @RegionId.setter
@@ -64,6 +67,9 @@ class CreateSavingPlanOrderRequest(AbstractModel):
64
67
 
65
68
  @property
66
69
  def ZoneId(self):
70
+ """区域编码
71
+ :rtype: int
72
+ """
67
73
  return self._ZoneId
68
74
 
69
75
  @ZoneId.setter
@@ -72,6 +78,9 @@ class CreateSavingPlanOrderRequest(AbstractModel):
72
78
 
73
79
  @property
74
80
  def PrePayType(self):
81
+ """预付费类型
82
+ :rtype: str
83
+ """
75
84
  return self._PrePayType
76
85
 
77
86
  @PrePayType.setter
@@ -80,6 +89,9 @@ class CreateSavingPlanOrderRequest(AbstractModel):
80
89
 
81
90
  @property
82
91
  def TimeSpan(self):
92
+ """时长
93
+ :rtype: int
94
+ """
83
95
  return self._TimeSpan
84
96
 
85
97
  @TimeSpan.setter
@@ -88,6 +100,9 @@ class CreateSavingPlanOrderRequest(AbstractModel):
88
100
 
89
101
  @property
90
102
  def TimeUnit(self):
103
+ """时长单位
104
+ :rtype: str
105
+ """
91
106
  return self._TimeUnit
92
107
 
93
108
  @TimeUnit.setter
@@ -96,6 +111,9 @@ class CreateSavingPlanOrderRequest(AbstractModel):
96
111
 
97
112
  @property
98
113
  def CommodityCode(self):
114
+ """商品唯一标识
115
+ :rtype: str
116
+ """
99
117
  return self._CommodityCode
100
118
 
101
119
  @CommodityCode.setter
@@ -104,6 +122,9 @@ class CreateSavingPlanOrderRequest(AbstractModel):
104
122
 
105
123
  @property
106
124
  def PromiseUseAmount(self):
125
+ """承诺时长内的小额金额(单位:元)
126
+ :rtype: int
127
+ """
107
128
  return self._PromiseUseAmount
108
129
 
109
130
  @PromiseUseAmount.setter
@@ -112,6 +133,9 @@ class CreateSavingPlanOrderRequest(AbstractModel):
112
133
 
113
134
  @property
114
135
  def SpecifyEffectTime(self):
136
+ """节省计划的指定生效时间,若不传则为当前下单时间。传参数格式:"2023-10-01 00:00:00",仅支持指定日期的0点时刻
137
+ :rtype: str
138
+ """
115
139
  return self._SpecifyEffectTime
116
140
 
117
141
  @SpecifyEffectTime.setter
@@ -120,6 +144,9 @@ class CreateSavingPlanOrderRequest(AbstractModel):
120
144
 
121
145
  @property
122
146
  def ClientToken(self):
147
+ """可重入ID
148
+ :rtype: str
149
+ """
123
150
  return self._ClientToken
124
151
 
125
152
  @ClientToken.setter
@@ -164,6 +191,9 @@ class CreateSavingPlanOrderResponse(AbstractModel):
164
191
 
165
192
  @property
166
193
  def BigDealId(self):
194
+ """订单号
195
+ :rtype: str
196
+ """
167
197
  return self._BigDealId
168
198
 
169
199
  @BigDealId.setter
@@ -172,6 +202,9 @@ class CreateSavingPlanOrderResponse(AbstractModel):
172
202
 
173
203
  @property
174
204
  def RequestId(self):
205
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
206
+ :rtype: str
207
+ """
175
208
  return self._RequestId
176
209
 
177
210
  @RequestId.setter
@@ -228,6 +261,9 @@ class DescribeSavingPlanDeductRequest(AbstractModel):
228
261
 
229
262
  @property
230
263
  def Offset(self):
264
+ """分页偏移量
265
+ :rtype: int
266
+ """
231
267
  return self._Offset
232
268
 
233
269
  @Offset.setter
@@ -236,6 +272,9 @@ class DescribeSavingPlanDeductRequest(AbstractModel):
236
272
 
237
273
  @property
238
274
  def Limit(self):
275
+ """每页数量,最大值为200
276
+ :rtype: int
277
+ """
239
278
  return self._Limit
240
279
 
241
280
  @Limit.setter
@@ -244,6 +283,9 @@ class DescribeSavingPlanDeductRequest(AbstractModel):
244
283
 
245
284
  @property
246
285
  def StartEndDate(self):
286
+ """节省计划使用开始的查询结束时间
287
+ :rtype: str
288
+ """
247
289
  return self._StartEndDate
248
290
 
249
291
  @StartEndDate.setter
@@ -252,6 +294,9 @@ class DescribeSavingPlanDeductRequest(AbstractModel):
252
294
 
253
295
  @property
254
296
  def StartStartDate(self):
297
+ """节省计划使用开始的查询开始时间
298
+ :rtype: str
299
+ """
255
300
  return self._StartStartDate
256
301
 
257
302
  @StartStartDate.setter
@@ -260,6 +305,9 @@ class DescribeSavingPlanDeductRequest(AbstractModel):
260
305
 
261
306
  @property
262
307
  def RegionId(self):
308
+ """地域编码
309
+ :rtype: int
310
+ """
263
311
  return self._RegionId
264
312
 
265
313
  @RegionId.setter
@@ -268,6 +316,9 @@ class DescribeSavingPlanDeductRequest(AbstractModel):
268
316
 
269
317
  @property
270
318
  def ZoneId(self):
319
+ """区域编码
320
+ :rtype: int
321
+ """
271
322
  return self._ZoneId
272
323
 
273
324
  @ZoneId.setter
@@ -276,6 +327,9 @@ class DescribeSavingPlanDeductRequest(AbstractModel):
276
327
 
277
328
  @property
278
329
  def SpId(self):
330
+ """节省计划资源id
331
+ :rtype: str
332
+ """
279
333
  return self._SpId
280
334
 
281
335
  @SpId.setter
@@ -284,6 +338,9 @@ class DescribeSavingPlanDeductRequest(AbstractModel):
284
338
 
285
339
  @property
286
340
  def DeductEndDate(self):
341
+ """抵扣查询结束时间,格式:yyyy-MM-dd HH:mm:ss
342
+ :rtype: str
343
+ """
287
344
  return self._DeductEndDate
288
345
 
289
346
  @DeductEndDate.setter
@@ -292,6 +349,9 @@ class DescribeSavingPlanDeductRequest(AbstractModel):
292
349
 
293
350
  @property
294
351
  def DeductStartDate(self):
352
+ """抵扣查询开始时间,格式:yyyy-MM-dd HH:mm:ss
353
+ :rtype: str
354
+ """
295
355
  return self._DeductStartDate
296
356
 
297
357
  @DeductStartDate.setter
@@ -300,6 +360,9 @@ class DescribeSavingPlanDeductRequest(AbstractModel):
300
360
 
301
361
  @property
302
362
  def EndEndDate(self):
363
+ """节省计划使用结束的查询结束时间
364
+ :rtype: str
365
+ """
303
366
  return self._EndEndDate
304
367
 
305
368
  @EndEndDate.setter
@@ -308,6 +371,9 @@ class DescribeSavingPlanDeductRequest(AbstractModel):
308
371
 
309
372
  @property
310
373
  def EndStartDate(self):
374
+ """节省计划使用结束的查询开始时间
375
+ :rtype: str
376
+ """
311
377
  return self._EndStartDate
312
378
 
313
379
  @EndStartDate.setter
@@ -358,6 +424,10 @@ class DescribeSavingPlanDeductResponse(AbstractModel):
358
424
 
359
425
  @property
360
426
  def Total(self):
427
+ """查询命中的节省计划抵扣明细数据总条数
428
+ 注意:此字段可能返回 null,表示取不到有效值。
429
+ :rtype: int
430
+ """
361
431
  return self._Total
362
432
 
363
433
  @Total.setter
@@ -366,6 +436,9 @@ class DescribeSavingPlanDeductResponse(AbstractModel):
366
436
 
367
437
  @property
368
438
  def Deducts(self):
439
+ """查询命中的节省计划抵扣明细数据明细
440
+ :rtype: list of SavingPlanDeductDetail
441
+ """
369
442
  return self._Deducts
370
443
 
371
444
  @Deducts.setter
@@ -374,6 +447,9 @@ class DescribeSavingPlanDeductResponse(AbstractModel):
374
447
 
375
448
  @property
376
449
  def RequestId(self):
450
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
451
+ :rtype: str
452
+ """
377
453
  return self._RequestId
378
454
 
379
455
  @RequestId.setter
@@ -415,6 +491,9 @@ class DescribeSavingPlanOverviewRequest(AbstractModel):
415
491
 
416
492
  @property
417
493
  def StartDate(self):
494
+ """开始时间,格式yyyy-MM-dd 注:查询范围请勿超过6个月
495
+ :rtype: str
496
+ """
418
497
  return self._StartDate
419
498
 
420
499
  @StartDate.setter
@@ -423,6 +502,9 @@ class DescribeSavingPlanOverviewRequest(AbstractModel):
423
502
 
424
503
  @property
425
504
  def EndDate(self):
505
+ """结束时间,格式yyyy-MM-dd
506
+ :rtype: str
507
+ """
426
508
  return self._EndDate
427
509
 
428
510
  @EndDate.setter
@@ -431,6 +513,9 @@ class DescribeSavingPlanOverviewRequest(AbstractModel):
431
513
 
432
514
  @property
433
515
  def Offset(self):
516
+ """分页偏移量
517
+ :rtype: int
518
+ """
434
519
  return self._Offset
435
520
 
436
521
  @Offset.setter
@@ -439,6 +524,9 @@ class DescribeSavingPlanOverviewRequest(AbstractModel):
439
524
 
440
525
  @property
441
526
  def Limit(self):
527
+ """每页数量,最大值为200
528
+ :rtype: int
529
+ """
442
530
  return self._Limit
443
531
 
444
532
  @Limit.setter
@@ -482,6 +570,10 @@ class DescribeSavingPlanOverviewResponse(AbstractModel):
482
570
 
483
571
  @property
484
572
  def Overviews(self):
573
+ """节省计划总览明细数据
574
+ 注意:此字段可能返回 null,表示取不到有效值。
575
+ :rtype: list of SavingPlanOverviewDetail
576
+ """
485
577
  return self._Overviews
486
578
 
487
579
  @Overviews.setter
@@ -490,6 +582,9 @@ class DescribeSavingPlanOverviewResponse(AbstractModel):
490
582
 
491
583
  @property
492
584
  def Total(self):
585
+ """查询命中的节省计划总览明细数据总条数
586
+ :rtype: int
587
+ """
493
588
  return self._Total
494
589
 
495
590
  @Total.setter
@@ -498,6 +593,9 @@ class DescribeSavingPlanOverviewResponse(AbstractModel):
498
593
 
499
594
  @property
500
595
  def RequestId(self):
596
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
597
+ :rtype: str
598
+ """
501
599
  return self._RequestId
502
600
 
503
601
  @RequestId.setter
@@ -542,6 +640,9 @@ class DescribeSavingPlanUsageRequest(AbstractModel):
542
640
 
543
641
  @property
544
642
  def StartDate(self):
643
+ """开始时间,格式yyyy-MM-dd 注:查询范围请勿超过6个月
644
+ :rtype: str
645
+ """
545
646
  return self._StartDate
546
647
 
547
648
  @StartDate.setter
@@ -550,6 +651,9 @@ class DescribeSavingPlanUsageRequest(AbstractModel):
550
651
 
551
652
  @property
552
653
  def EndDate(self):
654
+ """结束时间,格式yyyy-MM-dd
655
+ :rtype: str
656
+ """
553
657
  return self._EndDate
554
658
 
555
659
  @EndDate.setter
@@ -558,6 +662,9 @@ class DescribeSavingPlanUsageRequest(AbstractModel):
558
662
 
559
663
  @property
560
664
  def Offset(self):
665
+ """分页偏移量
666
+ :rtype: int
667
+ """
561
668
  return self._Offset
562
669
 
563
670
  @Offset.setter
@@ -566,6 +673,9 @@ class DescribeSavingPlanUsageRequest(AbstractModel):
566
673
 
567
674
  @property
568
675
  def Limit(self):
676
+ """每页数量,最大值为200
677
+ :rtype: int
678
+ """
569
679
  return self._Limit
570
680
 
571
681
  @Limit.setter
@@ -574,6 +684,9 @@ class DescribeSavingPlanUsageRequest(AbstractModel):
574
684
 
575
685
  @property
576
686
  def TimeInterval(self):
687
+ """查询结果数据的时间间隔
688
+ :rtype: str
689
+ """
577
690
  return self._TimeInterval
578
691
 
579
692
  @TimeInterval.setter
@@ -618,6 +731,9 @@ class DescribeSavingPlanUsageResponse(AbstractModel):
618
731
 
619
732
  @property
620
733
  def Total(self):
734
+ """查询命中的节省计划总览明细数据总条数
735
+ :rtype: int
736
+ """
621
737
  return self._Total
622
738
 
623
739
  @Total.setter
@@ -626,6 +742,10 @@ class DescribeSavingPlanUsageResponse(AbstractModel):
626
742
 
627
743
  @property
628
744
  def Usages(self):
745
+ """节省计划使用率数据
746
+ 注意:此字段可能返回 null,表示取不到有效值。
747
+ :rtype: list of SavingPlanUsageDetail
748
+ """
629
749
  return self._Usages
630
750
 
631
751
  @Usages.setter
@@ -634,6 +754,9 @@ class DescribeSavingPlanUsageResponse(AbstractModel):
634
754
 
635
755
  @property
636
756
  def RequestId(self):
757
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
758
+ :rtype: str
759
+ """
637
760
  return self._RequestId
638
761
 
639
762
  @RequestId.setter
@@ -743,6 +866,10 @@ class SavingPlanDeductDetail(AbstractModel):
743
866
 
744
867
  @property
745
868
  def OwnerUin(self):
869
+ """账号id
870
+ 注意:此字段可能返回 null,表示取不到有效值。
871
+ :rtype: str
872
+ """
746
873
  return self._OwnerUin
747
874
 
748
875
  @OwnerUin.setter
@@ -751,6 +878,10 @@ class SavingPlanDeductDetail(AbstractModel):
751
878
 
752
879
  @property
753
880
  def OwnerUinName(self):
881
+ """账号名称
882
+ 注意:此字段可能返回 null,表示取不到有效值。
883
+ :rtype: str
884
+ """
754
885
  return self._OwnerUinName
755
886
 
756
887
  @OwnerUinName.setter
@@ -759,6 +890,10 @@ class SavingPlanDeductDetail(AbstractModel):
759
890
 
760
891
  @property
761
892
  def PayerUin(self):
893
+ """抵扣账号id
894
+ 注意:此字段可能返回 null,表示取不到有效值。
895
+ :rtype: str
896
+ """
762
897
  return self._PayerUin
763
898
 
764
899
  @PayerUin.setter
@@ -767,6 +902,10 @@ class SavingPlanDeductDetail(AbstractModel):
767
902
 
768
903
  @property
769
904
  def PayerUinName(self):
905
+ """抵扣账号名称
906
+ 注意:此字段可能返回 null,表示取不到有效值。
907
+ :rtype: str
908
+ """
770
909
  return self._PayerUinName
771
910
 
772
911
  @PayerUinName.setter
@@ -775,6 +914,10 @@ class SavingPlanDeductDetail(AbstractModel):
775
914
 
776
915
  @property
777
916
  def SpId(self):
917
+ """节省计划资源id
918
+ 注意:此字段可能返回 null,表示取不到有效值。
919
+ :rtype: str
920
+ """
778
921
  return self._SpId
779
922
 
780
923
  @SpId.setter
@@ -783,6 +926,10 @@ class SavingPlanDeductDetail(AbstractModel):
783
926
 
784
927
  @property
785
928
  def ProductCode(self):
929
+ """产品编码
930
+ 注意:此字段可能返回 null,表示取不到有效值。
931
+ :rtype: str
932
+ """
786
933
  return self._ProductCode
787
934
 
788
935
  @ProductCode.setter
@@ -791,6 +938,10 @@ class SavingPlanDeductDetail(AbstractModel):
791
938
 
792
939
  @property
793
940
  def ProductName(self):
941
+ """产品名称
942
+ 注意:此字段可能返回 null,表示取不到有效值。
943
+ :rtype: str
944
+ """
794
945
  return self._ProductName
795
946
 
796
947
  @ProductName.setter
@@ -799,6 +950,10 @@ class SavingPlanDeductDetail(AbstractModel):
799
950
 
800
951
  @property
801
952
  def SubProductCode(self):
953
+ """子产品编码
954
+ 注意:此字段可能返回 null,表示取不到有效值。
955
+ :rtype: str
956
+ """
802
957
  return self._SubProductCode
803
958
 
804
959
  @SubProductCode.setter
@@ -807,6 +962,10 @@ class SavingPlanDeductDetail(AbstractModel):
807
962
 
808
963
  @property
809
964
  def SubProductName(self):
965
+ """子产品名称
966
+ 注意:此字段可能返回 null,表示取不到有效值。
967
+ :rtype: str
968
+ """
810
969
  return self._SubProductName
811
970
 
812
971
  @SubProductName.setter
@@ -815,6 +974,10 @@ class SavingPlanDeductDetail(AbstractModel):
815
974
 
816
975
  @property
817
976
  def OutTradeNo(self):
977
+ """交易ID
978
+ 注意:此字段可能返回 null,表示取不到有效值。
979
+ :rtype: str
980
+ """
818
981
  return self._OutTradeNo
819
982
 
820
983
  @OutTradeNo.setter
@@ -823,6 +986,10 @@ class SavingPlanDeductDetail(AbstractModel):
823
986
 
824
987
  @property
825
988
  def RegionId(self):
989
+ """地域id
990
+ 注意:此字段可能返回 null,表示取不到有效值。
991
+ :rtype: int
992
+ """
826
993
  return self._RegionId
827
994
 
828
995
  @RegionId.setter
@@ -831,6 +998,10 @@ class SavingPlanDeductDetail(AbstractModel):
831
998
 
832
999
  @property
833
1000
  def RegionName(self):
1001
+ """地域名称
1002
+ 注意:此字段可能返回 null,表示取不到有效值。
1003
+ :rtype: str
1004
+ """
834
1005
  return self._RegionName
835
1006
 
836
1007
  @RegionName.setter
@@ -839,6 +1010,10 @@ class SavingPlanDeductDetail(AbstractModel):
839
1010
 
840
1011
  @property
841
1012
  def ZoneId(self):
1013
+ """地区id
1014
+ 注意:此字段可能返回 null,表示取不到有效值。
1015
+ :rtype: int
1016
+ """
842
1017
  return self._ZoneId
843
1018
 
844
1019
  @ZoneId.setter
@@ -847,6 +1022,10 @@ class SavingPlanDeductDetail(AbstractModel):
847
1022
 
848
1023
  @property
849
1024
  def ZoneName(self):
1025
+ """地区名称
1026
+ 注意:此字段可能返回 null,表示取不到有效值。
1027
+ :rtype: str
1028
+ """
850
1029
  return self._ZoneName
851
1030
 
852
1031
  @ZoneName.setter
@@ -855,6 +1034,10 @@ class SavingPlanDeductDetail(AbstractModel):
855
1034
 
856
1035
  @property
857
1036
  def SpStartTime(self):
1037
+ """开始使用时间
1038
+ 注意:此字段可能返回 null,表示取不到有效值。
1039
+ :rtype: str
1040
+ """
858
1041
  return self._SpStartTime
859
1042
 
860
1043
  @SpStartTime.setter
@@ -863,6 +1046,10 @@ class SavingPlanDeductDetail(AbstractModel):
863
1046
 
864
1047
  @property
865
1048
  def SpEndTime(self):
1049
+ """结束使用时间
1050
+ 注意:此字段可能返回 null,表示取不到有效值。
1051
+ :rtype: str
1052
+ """
866
1053
  return self._SpEndTime
867
1054
 
868
1055
  @SpEndTime.setter
@@ -871,6 +1058,10 @@ class SavingPlanDeductDetail(AbstractModel):
871
1058
 
872
1059
  @property
873
1060
  def DeductTime(self):
1061
+ """折扣时间
1062
+ 注意:此字段可能返回 null,表示取不到有效值。
1063
+ :rtype: str
1064
+ """
874
1065
  return self._DeductTime
875
1066
 
876
1067
  @DeductTime.setter
@@ -879,6 +1070,10 @@ class SavingPlanDeductDetail(AbstractModel):
879
1070
 
880
1071
  @property
881
1072
  def DeductAmount(self):
1073
+ """抵扣金额,单位分
1074
+ 注意:此字段可能返回 null,表示取不到有效值。
1075
+ :rtype: str
1076
+ """
882
1077
  return self._DeductAmount
883
1078
 
884
1079
  @DeductAmount.setter
@@ -887,6 +1082,10 @@ class SavingPlanDeductDetail(AbstractModel):
887
1082
 
888
1083
  @property
889
1084
  def DeductDiscount(self):
1085
+ """抵扣折扣率
1086
+ 注意:此字段可能返回 null,表示取不到有效值。
1087
+ :rtype: str
1088
+ """
890
1089
  return self._DeductDiscount
891
1090
 
892
1091
  @DeductDiscount.setter
@@ -895,6 +1094,10 @@ class SavingPlanDeductDetail(AbstractModel):
895
1094
 
896
1095
  @property
897
1096
  def DeductRate(self):
1097
+ """抵扣比率
1098
+ 注意:此字段可能返回 null,表示取不到有效值。
1099
+ :rtype: str
1100
+ """
898
1101
  return self._DeductRate
899
1102
 
900
1103
  @DeductRate.setter
@@ -973,6 +1176,9 @@ class SavingPlanOverviewDetail(AbstractModel):
973
1176
 
974
1177
  @property
975
1178
  def SpType(self):
1179
+ """节省计划类型
1180
+ :rtype: str
1181
+ """
976
1182
  return self._SpType
977
1183
 
978
1184
  @SpType.setter
@@ -981,6 +1187,9 @@ class SavingPlanOverviewDetail(AbstractModel):
981
1187
 
982
1188
  @property
983
1189
  def PayAmount(self):
1190
+ """支付金额(单位:元)
1191
+ :rtype: str
1192
+ """
984
1193
  return self._PayAmount
985
1194
 
986
1195
  @PayAmount.setter
@@ -989,6 +1198,9 @@ class SavingPlanOverviewDetail(AbstractModel):
989
1198
 
990
1199
  @property
991
1200
  def StartTime(self):
1201
+ """开始时间 yyyy-mm-dd HH:mm:ss格式
1202
+ :rtype: str
1203
+ """
992
1204
  return self._StartTime
993
1205
 
994
1206
  @StartTime.setter
@@ -997,6 +1209,9 @@ class SavingPlanOverviewDetail(AbstractModel):
997
1209
 
998
1210
  @property
999
1211
  def EndTime(self):
1212
+ """结束时间 yyyy-mm-dd HH:mm:ss格式
1213
+ :rtype: str
1214
+ """
1000
1215
  return self._EndTime
1001
1216
 
1002
1217
  @EndTime.setter
@@ -1005,6 +1220,9 @@ class SavingPlanOverviewDetail(AbstractModel):
1005
1220
 
1006
1221
  @property
1007
1222
  def Status(self):
1223
+ """状态
1224
+ :rtype: int
1225
+ """
1008
1226
  return self._Status
1009
1227
 
1010
1228
  @Status.setter
@@ -1013,6 +1231,9 @@ class SavingPlanOverviewDetail(AbstractModel):
1013
1231
 
1014
1232
  @property
1015
1233
  def SavingAmount(self):
1234
+ """累计节省金额(单位:元)
1235
+ :rtype: str
1236
+ """
1016
1237
  return self._SavingAmount
1017
1238
 
1018
1239
  @SavingAmount.setter
@@ -1021,6 +1242,9 @@ class SavingPlanOverviewDetail(AbstractModel):
1021
1242
 
1022
1243
  @property
1023
1244
  def Region(self):
1245
+ """地域
1246
+ :rtype: list of str
1247
+ """
1024
1248
  return self._Region
1025
1249
 
1026
1250
  @Region.setter
@@ -1029,6 +1253,10 @@ class SavingPlanOverviewDetail(AbstractModel):
1029
1253
 
1030
1254
  @property
1031
1255
  def PayType(self):
1256
+ """支付类型
1257
+ 注意:此字段可能返回 null,表示取不到有效值。
1258
+ :rtype: int
1259
+ """
1032
1260
  return self._PayType
1033
1261
 
1034
1262
  @PayType.setter
@@ -1037,6 +1265,10 @@ class SavingPlanOverviewDetail(AbstractModel):
1037
1265
 
1038
1266
  @property
1039
1267
  def BuyTime(self):
1268
+ """购买时间 yyyy-mm-dd HH:mm:ss格式
1269
+ 注意:此字段可能返回 null,表示取不到有效值。
1270
+ :rtype: str
1271
+ """
1040
1272
  return self._BuyTime
1041
1273
 
1042
1274
  @BuyTime.setter
@@ -1106,6 +1338,9 @@ class SavingPlanUsageDetail(AbstractModel):
1106
1338
 
1107
1339
  @property
1108
1340
  def SpType(self):
1341
+ """节省计划类型
1342
+ :rtype: str
1343
+ """
1109
1344
  return self._SpType
1110
1345
 
1111
1346
  @SpType.setter
@@ -1114,6 +1349,9 @@ class SavingPlanUsageDetail(AbstractModel):
1114
1349
 
1115
1350
  @property
1116
1351
  def Status(self):
1352
+ """节省计划状态
1353
+ :rtype: int
1354
+ """
1117
1355
  return self._Status
1118
1356
 
1119
1357
  @Status.setter
@@ -1122,6 +1360,9 @@ class SavingPlanUsageDetail(AbstractModel):
1122
1360
 
1123
1361
  @property
1124
1362
  def DeductAmount(self):
1363
+ """累计抵扣的金额(单位:元)
1364
+ :rtype: str
1365
+ """
1125
1366
  return self._DeductAmount
1126
1367
 
1127
1368
  @DeductAmount.setter
@@ -1130,6 +1371,9 @@ class SavingPlanUsageDetail(AbstractModel):
1130
1371
 
1131
1372
  @property
1132
1373
  def PromiseAmount(self):
1374
+ """累计承诺消费金额(单位:元)
1375
+ :rtype: str
1376
+ """
1133
1377
  return self._PromiseAmount
1134
1378
 
1135
1379
  @PromiseAmount.setter
@@ -1138,6 +1382,9 @@ class SavingPlanUsageDetail(AbstractModel):
1138
1382
 
1139
1383
  @property
1140
1384
  def NetSavings(self):
1385
+ """累计净节省金额(单位:元)
1386
+ :rtype: str
1387
+ """
1141
1388
  return self._NetSavings
1142
1389
 
1143
1390
  @NetSavings.setter
@@ -1146,6 +1393,9 @@ class SavingPlanUsageDetail(AbstractModel):
1146
1393
 
1147
1394
  @property
1148
1395
  def UtilizationRate(self):
1396
+ """使用率
1397
+ :rtype: float
1398
+ """
1149
1399
  return self._UtilizationRate
1150
1400
 
1151
1401
  @UtilizationRate.setter
@@ -1154,6 +1404,9 @@ class SavingPlanUsageDetail(AbstractModel):
1154
1404
 
1155
1405
  @property
1156
1406
  def LossAmount(self):
1407
+ """累计流失金额(单位:元)
1408
+ :rtype: str
1409
+ """
1157
1410
  return self._LossAmount
1158
1411
 
1159
1412
  @LossAmount.setter
@@ -1162,6 +1415,9 @@ class SavingPlanUsageDetail(AbstractModel):
1162
1415
 
1163
1416
  @property
1164
1417
  def DosageAmount(self):
1418
+ """累计按量计费预期金额(单位:元)
1419
+ :rtype: str
1420
+ """
1165
1421
  return self._DosageAmount
1166
1422
 
1167
1423
  @DosageAmount.setter
@@ -1170,6 +1426,9 @@ class SavingPlanUsageDetail(AbstractModel):
1170
1426
 
1171
1427
  @property
1172
1428
  def CostAmount(self):
1429
+ """累计成本金额(单位:元)
1430
+ :rtype: str
1431
+ """
1173
1432
  return self._CostAmount
1174
1433
 
1175
1434
  @CostAmount.setter
@@ -1178,6 +1437,10 @@ class SavingPlanUsageDetail(AbstractModel):
1178
1437
 
1179
1438
  @property
1180
1439
  def Region(self):
1440
+ """地域
1441
+ 注意:此字段可能返回 null,表示取不到有效值。
1442
+ :rtype: list of str
1443
+ """
1181
1444
  return self._Region
1182
1445
 
1183
1446
  @Region.setter
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-svp
3
- Version: 3.0.1261
3
+ Version: 3.0.1263
4
4
  Summary: Tencent Cloud Svp SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common (==3.0.1261)
18
+ Requires-Dist: tencentcloud-sdk-python-common (==3.0.1263)
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1,10 @@
1
+ tencentcloud/__init__.py,sha256=I-SN6tI8nIMh1Df4pK83RcurEm0Ig6fzDp-S-llY_NU,631
2
+ tencentcloud/svp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ tencentcloud/svp/v20240125/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ tencentcloud/svp/v20240125/errorcodes.py,sha256=G0jzbbcjQ2yBiy4UDIkf369Quebbm0ccDOERn-es6_Y,748
5
+ tencentcloud/svp/v20240125/models.py,sha256=91tTjDbJLXZJ6EArLRkSSPUcPCGKm0BLYW8O0yubkOY,42934
6
+ tencentcloud/svp/v20240125/svp_client.py,sha256=wro4jtvY-E7yrRueTKfQ-bAosPqRU3ayxC7wyZ1jL5E,4749
7
+ tencentcloud_sdk_python_svp-3.0.1263.dist-info/METADATA,sha256=SdlMqoNwjsW6Nb0nnhr06pdkt4ylp0nDQVHJZ5r7G1E,1492
8
+ tencentcloud_sdk_python_svp-3.0.1263.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
9
+ tencentcloud_sdk_python_svp-3.0.1263.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
10
+ tencentcloud_sdk_python_svp-3.0.1263.dist-info/RECORD,,
@@ -1,10 +0,0 @@
1
- tencentcloud/__init__.py,sha256=sv_4VL4ekKEPtPqyDZVlcO_sfK6E5GMIbSqnr9sUnP4,631
2
- tencentcloud/svp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- tencentcloud/svp/v20240125/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- tencentcloud/svp/v20240125/errorcodes.py,sha256=G0jzbbcjQ2yBiy4UDIkf369Quebbm0ccDOERn-es6_Y,748
5
- tencentcloud/svp/v20240125/models.py,sha256=MLd6skIRc-LLZFq33YftDhCEfyjKbBlGS3ZRg2grHBM,34746
6
- tencentcloud/svp/v20240125/svp_client.py,sha256=wro4jtvY-E7yrRueTKfQ-bAosPqRU3ayxC7wyZ1jL5E,4749
7
- tencentcloud_sdk_python_svp-3.0.1261.dist-info/METADATA,sha256=mHMQ8iCwi70n05klMuk0e_w8-vK7sCcsmmSYsTPr2fk,1492
8
- tencentcloud_sdk_python_svp-3.0.1261.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
9
- tencentcloud_sdk_python_svp-3.0.1261.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
10
- tencentcloud_sdk_python_svp-3.0.1261.dist-info/RECORD,,