tencentcloud-sdk-python 3.0.1323__py2.py3-none-any.whl → 3.0.1325__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.
Files changed (35) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/aiart/v20221229/models.py +2 -2
  3. tencentcloud/antiddos/v20200309/models.py +27 -10
  4. tencentcloud/apm/v20210622/apm_client.py +23 -0
  5. tencentcloud/apm/v20210622/models.py +255 -2
  6. tencentcloud/cbs/v20170312/cbs_client.py +101 -0
  7. tencentcloud/cbs/v20170312/errorcodes.py +3 -0
  8. tencentcloud/cbs/v20170312/models.py +735 -5
  9. tencentcloud/cdwdoris/v20211228/models.py +17 -2
  10. tencentcloud/cls/v20201016/models.py +15 -0
  11. tencentcloud/dc/v20180410/models.py +15 -0
  12. tencentcloud/dlc/v20210125/models.py +0 -24
  13. tencentcloud/dts/v20211206/models.py +2 -2
  14. tencentcloud/emr/v20190103/models.py +96 -0
  15. tencentcloud/gme/v20180711/models.py +0 -18
  16. tencentcloud/mna/v20210119/models.py +0 -58
  17. tencentcloud/ocr/v20181119/models.py +158 -0
  18. tencentcloud/ocr/v20181119/ocr_client.py +3 -1
  19. tencentcloud/scf/v20180416/models.py +2 -2
  20. tencentcloud/ses/v20201002/models.py +15 -0
  21. tencentcloud/svp/v20240125/models.py +0 -6
  22. tencentcloud/teo/v20220901/models.py +64 -0
  23. tencentcloud/trp/v20210515/models.py +0 -360
  24. tencentcloud/vpc/v20170312/models.py +234 -0
  25. tencentcloud/vpc/v20170312/vpc_client.py +46 -0
  26. {tencentcloud_sdk_python-3.0.1323.dist-info → tencentcloud_sdk_python-3.0.1325.dist-info}/METADATA +1 -1
  27. {tencentcloud_sdk_python-3.0.1323.dist-info → tencentcloud_sdk_python-3.0.1325.dist-info}/RECORD +30 -35
  28. tencentcloud/aa/__init__.py +0 -0
  29. tencentcloud/aa/v20200224/__init__.py +0 -0
  30. tencentcloud/aa/v20200224/aa_client.py +0 -49
  31. tencentcloud/aa/v20200224/errorcodes.py +0 -78
  32. tencentcloud/aa/v20200224/models.py +0 -736
  33. {tencentcloud_sdk_python-3.0.1323.dist-info → tencentcloud_sdk_python-3.0.1325.dist-info}/LICENSE +0 -0
  34. {tencentcloud_sdk_python-3.0.1323.dist-info → tencentcloud_sdk_python-3.0.1325.dist-info}/WHEEL +0 -0
  35. {tencentcloud_sdk_python-3.0.1323.dist-info → tencentcloud_sdk_python-3.0.1325.dist-info}/top_level.txt +0 -0
@@ -269,10 +269,8 @@ class Chain(AbstractModel):
269
269
  def __init__(self):
270
270
  r"""
271
271
  :param _Code: 码url
272
- 注意:此字段可能返回 null,表示取不到有效值。
273
272
  :type Code: str
274
273
  :param _Data: 上链数据
275
- 注意:此字段可能返回 null,表示取不到有效值。
276
274
  :type Data: list of ChainValue
277
275
  """
278
276
  self._Code = None
@@ -281,7 +279,6 @@ class Chain(AbstractModel):
281
279
  @property
282
280
  def Code(self):
283
281
  """码url
284
- 注意:此字段可能返回 null,表示取不到有效值。
285
282
  :rtype: str
286
283
  """
287
284
  return self._Code
@@ -293,7 +290,6 @@ class Chain(AbstractModel):
293
290
  @property
294
291
  def Data(self):
295
292
  """上链数据
296
- 注意:此字段可能返回 null,表示取不到有效值。
297
293
  :rtype: list of ChainValue
298
294
  """
299
295
  return self._Data
@@ -329,13 +325,10 @@ class ChainData(AbstractModel):
329
325
  def __init__(self):
330
326
  r"""
331
327
  :param _BlockHash: 区块hash
332
- 注意:此字段可能返回 null,表示取不到有效值。
333
328
  :type BlockHash: str
334
329
  :param _BlockHeight: 区块高度
335
- 注意:此字段可能返回 null,表示取不到有效值。
336
330
  :type BlockHeight: str
337
331
  :param _BlockTime: 区块时间
338
- 注意:此字段可能返回 null,表示取不到有效值。
339
332
  :type BlockTime: str
340
333
  """
341
334
  self._BlockHash = None
@@ -345,7 +338,6 @@ class ChainData(AbstractModel):
345
338
  @property
346
339
  def BlockHash(self):
347
340
  """区块hash
348
- 注意:此字段可能返回 null,表示取不到有效值。
349
341
  :rtype: str
350
342
  """
351
343
  return self._BlockHash
@@ -357,7 +349,6 @@ class ChainData(AbstractModel):
357
349
  @property
358
350
  def BlockHeight(self):
359
351
  """区块高度
360
- 注意:此字段可能返回 null,表示取不到有效值。
361
352
  :rtype: str
362
353
  """
363
354
  return self._BlockHeight
@@ -369,7 +360,6 @@ class ChainData(AbstractModel):
369
360
  @property
370
361
  def BlockTime(self):
371
362
  """区块时间
372
- 注意:此字段可能返回 null,表示取不到有效值。
373
363
  :rtype: str
374
364
  """
375
365
  return self._BlockTime
@@ -401,13 +391,10 @@ class ChainValue(AbstractModel):
401
391
  def __init__(self):
402
392
  r"""
403
393
  :param _Label: 标题名字
404
- 注意:此字段可能返回 null,表示取不到有效值。
405
394
  :type Label: str
406
395
  :param _Type: 类型,文字:"text",图片:"image"
407
- 注意:此字段可能返回 null,表示取不到有效值。
408
396
  :type Type: str
409
397
  :param _Value: 值,文字类型:"abc",图片类型:""/images/img.png"
410
- 注意:此字段可能返回 null,表示取不到有效值。
411
398
  :type Value: str
412
399
  """
413
400
  self._Label = None
@@ -417,7 +404,6 @@ class ChainValue(AbstractModel):
417
404
  @property
418
405
  def Label(self):
419
406
  """标题名字
420
- 注意:此字段可能返回 null,表示取不到有效值。
421
407
  :rtype: str
422
408
  """
423
409
  return self._Label
@@ -429,7 +415,6 @@ class ChainValue(AbstractModel):
429
415
  @property
430
416
  def Type(self):
431
417
  """类型,文字:"text",图片:"image"
432
- 注意:此字段可能返回 null,表示取不到有效值。
433
418
  :rtype: str
434
419
  """
435
420
  return self._Type
@@ -441,7 +426,6 @@ class ChainValue(AbstractModel):
441
426
  @property
442
427
  def Value(self):
443
428
  """值,文字类型:"abc",图片类型:""/images/img.png"
444
- 注意:此字段可能返回 null,表示取不到有效值。
445
429
  :rtype: str
446
430
  """
447
431
  return self._Value
@@ -473,52 +457,37 @@ class CodeBatch(AbstractModel):
473
457
  def __init__(self):
474
458
  r"""
475
459
  :param _BatchId: 批次号
476
- 注意:此字段可能返回 null,表示取不到有效值。
477
460
  :type BatchId: str
478
461
  :param _CorpId: 企业ID
479
- 注意:此字段可能返回 null,表示取不到有效值。
480
462
  :type CorpId: int
481
463
  :param _BatchCode: 批次编码(未使用)
482
- 注意:此字段可能返回 null,表示取不到有效值。
483
464
  :type BatchCode: str
484
465
  :param _CodeCnt: 码数量
485
- 注意:此字段可能返回 null,表示取不到有效值。
486
466
  :type CodeCnt: int
487
467
  :param _MerchantId: 所属商户ID
488
- 注意:此字段可能返回 null,表示取不到有效值。
489
468
  :type MerchantId: str
490
469
  :param _ProductId: 产品ID
491
- 注意:此字段可能返回 null,表示取不到有效值。
492
470
  :type ProductId: str
493
471
  :param _BatchType: 批次类型
494
- 注意:此字段可能返回 null,表示取不到有效值。
495
472
  :type BatchType: int
496
473
  :param _Remark: 备注
497
- 注意:此字段可能返回 null,表示取不到有效值。
498
474
  :type Remark: str
499
475
  :param _MpTpl: 微信模板
500
- 注意:此字段可能返回 null,表示取不到有效值。
501
476
  :type MpTpl: str
502
477
  :param _Status: 批次状态 0: 未激活 1: 已激活 -1: 已冻结
503
- 注意:此字段可能返回 null,表示取不到有效值。
504
478
  :type Status: int
505
479
  :param _CreateTime: 创建时间
506
- 注意:此字段可能返回 null,表示取不到有效值。
507
480
  :type CreateTime: str
508
481
  :param _UpdateTime: 修改时间
509
- 注意:此字段可能返回 null,表示取不到有效值。
510
482
  :type UpdateTime: str
511
483
  :param _MerchantName: 所属商户名称
512
- 注意:此字段可能返回 null,表示取不到有效值。
513
484
  :type MerchantName: str
514
485
  :param _ProductName: 产品名称
515
- 注意:此字段可能返回 null,表示取不到有效值。
516
486
  :type ProductName: str
517
487
  :param _Ext: 未使用
518
488
  注意:此字段可能返回 null,表示取不到有效值。
519
489
  :type Ext: :class:`tencentcloud.trp.v20210515.models.Ext`
520
490
  :param _TplName: 模板名称
521
- 注意:此字段可能返回 null,表示取不到有效值。
522
491
  :type TplName: str
523
492
  :param _Job: 调度任务
524
493
  注意:此字段可能返回 null,表示取不到有效值。
@@ -556,7 +525,6 @@ class CodeBatch(AbstractModel):
556
525
  @property
557
526
  def BatchId(self):
558
527
  """批次号
559
- 注意:此字段可能返回 null,表示取不到有效值。
560
528
  :rtype: str
561
529
  """
562
530
  return self._BatchId
@@ -568,7 +536,6 @@ class CodeBatch(AbstractModel):
568
536
  @property
569
537
  def CorpId(self):
570
538
  """企业ID
571
- 注意:此字段可能返回 null,表示取不到有效值。
572
539
  :rtype: int
573
540
  """
574
541
  return self._CorpId
@@ -580,7 +547,6 @@ class CodeBatch(AbstractModel):
580
547
  @property
581
548
  def BatchCode(self):
582
549
  """批次编码(未使用)
583
- 注意:此字段可能返回 null,表示取不到有效值。
584
550
  :rtype: str
585
551
  """
586
552
  return self._BatchCode
@@ -592,7 +558,6 @@ class CodeBatch(AbstractModel):
592
558
  @property
593
559
  def CodeCnt(self):
594
560
  """码数量
595
- 注意:此字段可能返回 null,表示取不到有效值。
596
561
  :rtype: int
597
562
  """
598
563
  return self._CodeCnt
@@ -604,7 +569,6 @@ class CodeBatch(AbstractModel):
604
569
  @property
605
570
  def MerchantId(self):
606
571
  """所属商户ID
607
- 注意:此字段可能返回 null,表示取不到有效值。
608
572
  :rtype: str
609
573
  """
610
574
  return self._MerchantId
@@ -616,7 +580,6 @@ class CodeBatch(AbstractModel):
616
580
  @property
617
581
  def ProductId(self):
618
582
  """产品ID
619
- 注意:此字段可能返回 null,表示取不到有效值。
620
583
  :rtype: str
621
584
  """
622
585
  return self._ProductId
@@ -628,7 +591,6 @@ class CodeBatch(AbstractModel):
628
591
  @property
629
592
  def BatchType(self):
630
593
  """批次类型
631
- 注意:此字段可能返回 null,表示取不到有效值。
632
594
  :rtype: int
633
595
  """
634
596
  return self._BatchType
@@ -640,7 +602,6 @@ class CodeBatch(AbstractModel):
640
602
  @property
641
603
  def Remark(self):
642
604
  """备注
643
- 注意:此字段可能返回 null,表示取不到有效值。
644
605
  :rtype: str
645
606
  """
646
607
  return self._Remark
@@ -652,7 +613,6 @@ class CodeBatch(AbstractModel):
652
613
  @property
653
614
  def MpTpl(self):
654
615
  """微信模板
655
- 注意:此字段可能返回 null,表示取不到有效值。
656
616
  :rtype: str
657
617
  """
658
618
  return self._MpTpl
@@ -664,7 +624,6 @@ class CodeBatch(AbstractModel):
664
624
  @property
665
625
  def Status(self):
666
626
  """批次状态 0: 未激活 1: 已激活 -1: 已冻结
667
- 注意:此字段可能返回 null,表示取不到有效值。
668
627
  :rtype: int
669
628
  """
670
629
  return self._Status
@@ -676,7 +635,6 @@ class CodeBatch(AbstractModel):
676
635
  @property
677
636
  def CreateTime(self):
678
637
  """创建时间
679
- 注意:此字段可能返回 null,表示取不到有效值。
680
638
  :rtype: str
681
639
  """
682
640
  return self._CreateTime
@@ -688,7 +646,6 @@ class CodeBatch(AbstractModel):
688
646
  @property
689
647
  def UpdateTime(self):
690
648
  """修改时间
691
- 注意:此字段可能返回 null,表示取不到有效值。
692
649
  :rtype: str
693
650
  """
694
651
  return self._UpdateTime
@@ -700,7 +657,6 @@ class CodeBatch(AbstractModel):
700
657
  @property
701
658
  def MerchantName(self):
702
659
  """所属商户名称
703
- 注意:此字段可能返回 null,表示取不到有效值。
704
660
  :rtype: str
705
661
  """
706
662
  return self._MerchantName
@@ -712,7 +668,6 @@ class CodeBatch(AbstractModel):
712
668
  @property
713
669
  def ProductName(self):
714
670
  """产品名称
715
- 注意:此字段可能返回 null,表示取不到有效值。
716
671
  :rtype: str
717
672
  """
718
673
  return self._ProductName
@@ -740,7 +695,6 @@ class CodeBatch(AbstractModel):
740
695
  @property
741
696
  def TplName(self):
742
697
  """模板名称
743
- 注意:此字段可能返回 null,表示取不到有效值。
744
698
  :rtype: str
745
699
  """
746
700
  return self._TplName
@@ -881,91 +835,63 @@ class CodePack(AbstractModel):
881
835
  def __init__(self):
882
836
  r"""
883
837
  :param _PackId: 码id
884
- 注意:此字段可能返回 null,表示取不到有效值。
885
838
  :type PackId: str
886
839
  :param _CorpId: 企业id
887
- 注意:此字段可能返回 null,表示取不到有效值。
888
840
  :type CorpId: int
889
841
  :param _MerchantId: 商户id
890
- 注意:此字段可能返回 null,表示取不到有效值。
891
842
  :type MerchantId: str
892
843
  :param _CreateTime: 创建时间
893
- 注意:此字段可能返回 null,表示取不到有效值。
894
844
  :type CreateTime: str
895
845
  :param _UpdateTime: 更新时间
896
- 注意:此字段可能返回 null,表示取不到有效值。
897
846
  :type UpdateTime: str
898
847
  :param _Status: 制码状态 init: 初始化, pending: 执行中, done: 完成, error: 失败
899
- 注意:此字段可能返回 null,表示取不到有效值。
900
848
  :type Status: str
901
849
  :param _Log: 执行日志
902
- 注意:此字段可能返回 null,表示取不到有效值。
903
850
  :type Log: str
904
851
  :param _CreateUser: 创建人
905
- 注意:此字段可能返回 null,表示取不到有效值。
906
852
  :type CreateUser: str
907
853
  :param _Amount: 码数
908
- 注意:此字段可能返回 null,表示取不到有效值。
909
854
  :type Amount: int
910
855
  :param _CodeLength: 防伪码长度
911
- 注意:此字段可能返回 null,表示取不到有效值。
912
856
  :type CodeLength: int
913
857
  :param _CodeType: 码类型
914
- 注意:此字段可能返回 null,表示取不到有效值。
915
858
  :type CodeType: str
916
859
  :param _Cipher: 是否暗码
917
- 注意:此字段可能返回 null,表示取不到有效值。
918
860
  :type Cipher: int
919
861
  :param _TextUrl: [弃用] 文字码地址,通过另一个接口查
920
- 注意:此字段可能返回 null,表示取不到有效值。
921
862
  :type TextUrl: str
922
863
  :param _PackUrl: [弃用] 二维码地址,通过另一个接口查
923
- 注意:此字段可能返回 null,表示取不到有效值。
924
864
  :type PackUrl: str
925
865
  :param _MerchantName: 商户名
926
- 注意:此字段可能返回 null,表示取不到有效值。
927
866
  :type MerchantName: str
928
867
  :param _RuleType: 码规则类型 0: 默认, 1: 自定义
929
- 注意:此字段可能返回 null,表示取不到有效值。
930
868
  :type RuleType: int
931
869
  :param _CustomId: 自定义码规则ID
932
- 注意:此字段可能返回 null,表示取不到有效值。
933
870
  :type CustomId: str
934
871
  :param _PackType: 码包类型 0: 普通码包 1: 层级码包
935
- 注意:此字段可能返回 null,表示取不到有效值。
936
872
  :type PackType: int
937
873
  :param _PackLevel: 生码层级
938
- 注意:此字段可能返回 null,表示取不到有效值。
939
874
  :type PackLevel: int
940
875
  :param _PackSpec: 层级码配置
941
- 注意:此字段可能返回 null,表示取不到有效值。
942
876
  :type PackSpec: list of PackSpec
943
877
  :param _ProductName: 商品名称
944
- 注意:此字段可能返回 null,表示取不到有效值。
945
878
  :type ProductName: str
946
879
  :param _ProductSpecification: 商品规格
947
- 注意:此字段可能返回 null,表示取不到有效值。
948
880
  :type ProductSpecification: str
949
881
  :param _ProductId: 商品ID
950
- 注意:此字段可能返回 null,表示取不到有效值。
951
882
  :type ProductId: str
952
883
  :param _RelateType: 码关系是否预关联
953
884
  0:否, 1:是
954
885
  :type RelateType: int
955
886
  :param _SceneCode: 场景码
956
- 注意:此字段可能返回 null,表示取不到有效值。
957
887
  :type SceneCode: int
958
888
  :param _CodeRule: 码规则
959
- 注意:此字段可能返回 null,表示取不到有效值。
960
889
  :type CodeRule: str
961
890
  :param _UsedAmount: 已使用码数
962
- 注意:此字段可能返回 null,表示取不到有效值。
963
891
  :type UsedAmount: int
964
892
  :param _SerialStart: 开始流水号
965
- 注意:此字段可能返回 null,表示取不到有效值。
966
893
  :type SerialStart: int
967
894
  :param _SerialEnd: 结束流水号
968
- 注意:此字段可能返回 null,表示取不到有效值。
969
895
  :type SerialEnd: int
970
896
  """
971
897
  self._PackId = None
@@ -1001,7 +927,6 @@ class CodePack(AbstractModel):
1001
927
  @property
1002
928
  def PackId(self):
1003
929
  """码id
1004
- 注意:此字段可能返回 null,表示取不到有效值。
1005
930
  :rtype: str
1006
931
  """
1007
932
  return self._PackId
@@ -1013,7 +938,6 @@ class CodePack(AbstractModel):
1013
938
  @property
1014
939
  def CorpId(self):
1015
940
  """企业id
1016
- 注意:此字段可能返回 null,表示取不到有效值。
1017
941
  :rtype: int
1018
942
  """
1019
943
  return self._CorpId
@@ -1025,7 +949,6 @@ class CodePack(AbstractModel):
1025
949
  @property
1026
950
  def MerchantId(self):
1027
951
  """商户id
1028
- 注意:此字段可能返回 null,表示取不到有效值。
1029
952
  :rtype: str
1030
953
  """
1031
954
  return self._MerchantId
@@ -1037,7 +960,6 @@ class CodePack(AbstractModel):
1037
960
  @property
1038
961
  def CreateTime(self):
1039
962
  """创建时间
1040
- 注意:此字段可能返回 null,表示取不到有效值。
1041
963
  :rtype: str
1042
964
  """
1043
965
  return self._CreateTime
@@ -1049,7 +971,6 @@ class CodePack(AbstractModel):
1049
971
  @property
1050
972
  def UpdateTime(self):
1051
973
  """更新时间
1052
- 注意:此字段可能返回 null,表示取不到有效值。
1053
974
  :rtype: str
1054
975
  """
1055
976
  return self._UpdateTime
@@ -1061,7 +982,6 @@ class CodePack(AbstractModel):
1061
982
  @property
1062
983
  def Status(self):
1063
984
  """制码状态 init: 初始化, pending: 执行中, done: 完成, error: 失败
1064
- 注意:此字段可能返回 null,表示取不到有效值。
1065
985
  :rtype: str
1066
986
  """
1067
987
  return self._Status
@@ -1073,7 +993,6 @@ class CodePack(AbstractModel):
1073
993
  @property
1074
994
  def Log(self):
1075
995
  """执行日志
1076
- 注意:此字段可能返回 null,表示取不到有效值。
1077
996
  :rtype: str
1078
997
  """
1079
998
  return self._Log
@@ -1085,7 +1004,6 @@ class CodePack(AbstractModel):
1085
1004
  @property
1086
1005
  def CreateUser(self):
1087
1006
  """创建人
1088
- 注意:此字段可能返回 null,表示取不到有效值。
1089
1007
  :rtype: str
1090
1008
  """
1091
1009
  return self._CreateUser
@@ -1097,7 +1015,6 @@ class CodePack(AbstractModel):
1097
1015
  @property
1098
1016
  def Amount(self):
1099
1017
  """码数
1100
- 注意:此字段可能返回 null,表示取不到有效值。
1101
1018
  :rtype: int
1102
1019
  """
1103
1020
  return self._Amount
@@ -1109,7 +1026,6 @@ class CodePack(AbstractModel):
1109
1026
  @property
1110
1027
  def CodeLength(self):
1111
1028
  """防伪码长度
1112
- 注意:此字段可能返回 null,表示取不到有效值。
1113
1029
  :rtype: int
1114
1030
  """
1115
1031
  return self._CodeLength
@@ -1121,7 +1037,6 @@ class CodePack(AbstractModel):
1121
1037
  @property
1122
1038
  def CodeType(self):
1123
1039
  """码类型
1124
- 注意:此字段可能返回 null,表示取不到有效值。
1125
1040
  :rtype: str
1126
1041
  """
1127
1042
  return self._CodeType
@@ -1133,7 +1048,6 @@ class CodePack(AbstractModel):
1133
1048
  @property
1134
1049
  def Cipher(self):
1135
1050
  """是否暗码
1136
- 注意:此字段可能返回 null,表示取不到有效值。
1137
1051
  :rtype: int
1138
1052
  """
1139
1053
  return self._Cipher
@@ -1145,7 +1059,6 @@ class CodePack(AbstractModel):
1145
1059
  @property
1146
1060
  def TextUrl(self):
1147
1061
  """[弃用] 文字码地址,通过另一个接口查
1148
- 注意:此字段可能返回 null,表示取不到有效值。
1149
1062
  :rtype: str
1150
1063
  """
1151
1064
  return self._TextUrl
@@ -1157,7 +1070,6 @@ class CodePack(AbstractModel):
1157
1070
  @property
1158
1071
  def PackUrl(self):
1159
1072
  """[弃用] 二维码地址,通过另一个接口查
1160
- 注意:此字段可能返回 null,表示取不到有效值。
1161
1073
  :rtype: str
1162
1074
  """
1163
1075
  return self._PackUrl
@@ -1169,7 +1081,6 @@ class CodePack(AbstractModel):
1169
1081
  @property
1170
1082
  def MerchantName(self):
1171
1083
  """商户名
1172
- 注意:此字段可能返回 null,表示取不到有效值。
1173
1084
  :rtype: str
1174
1085
  """
1175
1086
  return self._MerchantName
@@ -1181,7 +1092,6 @@ class CodePack(AbstractModel):
1181
1092
  @property
1182
1093
  def RuleType(self):
1183
1094
  """码规则类型 0: 默认, 1: 自定义
1184
- 注意:此字段可能返回 null,表示取不到有效值。
1185
1095
  :rtype: int
1186
1096
  """
1187
1097
  return self._RuleType
@@ -1193,7 +1103,6 @@ class CodePack(AbstractModel):
1193
1103
  @property
1194
1104
  def CustomId(self):
1195
1105
  """自定义码规则ID
1196
- 注意:此字段可能返回 null,表示取不到有效值。
1197
1106
  :rtype: str
1198
1107
  """
1199
1108
  return self._CustomId
@@ -1205,7 +1114,6 @@ class CodePack(AbstractModel):
1205
1114
  @property
1206
1115
  def PackType(self):
1207
1116
  """码包类型 0: 普通码包 1: 层级码包
1208
- 注意:此字段可能返回 null,表示取不到有效值。
1209
1117
  :rtype: int
1210
1118
  """
1211
1119
  return self._PackType
@@ -1217,7 +1125,6 @@ class CodePack(AbstractModel):
1217
1125
  @property
1218
1126
  def PackLevel(self):
1219
1127
  """生码层级
1220
- 注意:此字段可能返回 null,表示取不到有效值。
1221
1128
  :rtype: int
1222
1129
  """
1223
1130
  return self._PackLevel
@@ -1229,7 +1136,6 @@ class CodePack(AbstractModel):
1229
1136
  @property
1230
1137
  def PackSpec(self):
1231
1138
  """层级码配置
1232
- 注意:此字段可能返回 null,表示取不到有效值。
1233
1139
  :rtype: list of PackSpec
1234
1140
  """
1235
1141
  return self._PackSpec
@@ -1241,7 +1147,6 @@ class CodePack(AbstractModel):
1241
1147
  @property
1242
1148
  def ProductName(self):
1243
1149
  """商品名称
1244
- 注意:此字段可能返回 null,表示取不到有效值。
1245
1150
  :rtype: str
1246
1151
  """
1247
1152
  return self._ProductName
@@ -1253,7 +1158,6 @@ class CodePack(AbstractModel):
1253
1158
  @property
1254
1159
  def ProductSpecification(self):
1255
1160
  """商品规格
1256
- 注意:此字段可能返回 null,表示取不到有效值。
1257
1161
  :rtype: str
1258
1162
  """
1259
1163
  return self._ProductSpecification
@@ -1265,7 +1169,6 @@ class CodePack(AbstractModel):
1265
1169
  @property
1266
1170
  def ProductId(self):
1267
1171
  """商品ID
1268
- 注意:此字段可能返回 null,表示取不到有效值。
1269
1172
  :rtype: str
1270
1173
  """
1271
1174
  return self._ProductId
@@ -1289,7 +1192,6 @@ class CodePack(AbstractModel):
1289
1192
  @property
1290
1193
  def SceneCode(self):
1291
1194
  """场景码
1292
- 注意:此字段可能返回 null,表示取不到有效值。
1293
1195
  :rtype: int
1294
1196
  """
1295
1197
  return self._SceneCode
@@ -1301,7 +1203,6 @@ class CodePack(AbstractModel):
1301
1203
  @property
1302
1204
  def CodeRule(self):
1303
1205
  """码规则
1304
- 注意:此字段可能返回 null,表示取不到有效值。
1305
1206
  :rtype: str
1306
1207
  """
1307
1208
  return self._CodeRule
@@ -1313,7 +1214,6 @@ class CodePack(AbstractModel):
1313
1214
  @property
1314
1215
  def UsedAmount(self):
1315
1216
  """已使用码数
1316
- 注意:此字段可能返回 null,表示取不到有效值。
1317
1217
  :rtype: int
1318
1218
  """
1319
1219
  return self._UsedAmount
@@ -1325,7 +1225,6 @@ class CodePack(AbstractModel):
1325
1225
  @property
1326
1226
  def SerialStart(self):
1327
1227
  """开始流水号
1328
- 注意:此字段可能返回 null,表示取不到有效值。
1329
1228
  :rtype: int
1330
1229
  """
1331
1230
  return self._SerialStart
@@ -1337,7 +1236,6 @@ class CodePack(AbstractModel):
1337
1236
  @property
1338
1237
  def SerialEnd(self):
1339
1238
  """结束流水号
1340
- 注意:此字段可能返回 null,表示取不到有效值。
1341
1239
  :rtype: int
1342
1240
  """
1343
1241
  return self._SerialEnd
@@ -1400,18 +1298,14 @@ class CodePart(AbstractModel):
1400
1298
  def __init__(self):
1401
1299
  r"""
1402
1300
  :param _Name: 码段名称
1403
- 注意:此字段可能返回 null,表示取不到有效值。
1404
1301
  :type Name: str
1405
1302
  :param _Type: 码段类型
1406
- 注意:此字段可能返回 null,表示取不到有效值。
1407
1303
  :type Type: str
1408
1304
  :param _Value: 码段内容
1409
- 注意:此字段可能返回 null,表示取不到有效值。
1410
1305
  :type Value: str
1411
1306
  :param _Length: 码段长度
1412
1307
  :type Length: int
1413
1308
  :param _Ext: 扩展字段
1414
- 注意:此字段可能返回 null,表示取不到有效值。
1415
1309
  :type Ext: str
1416
1310
  """
1417
1311
  self._Name = None
@@ -1423,7 +1317,6 @@ class CodePart(AbstractModel):
1423
1317
  @property
1424
1318
  def Name(self):
1425
1319
  """码段名称
1426
- 注意:此字段可能返回 null,表示取不到有效值。
1427
1320
  :rtype: str
1428
1321
  """
1429
1322
  return self._Name
@@ -1435,7 +1328,6 @@ class CodePart(AbstractModel):
1435
1328
  @property
1436
1329
  def Type(self):
1437
1330
  """码段类型
1438
- 注意:此字段可能返回 null,表示取不到有效值。
1439
1331
  :rtype: str
1440
1332
  """
1441
1333
  return self._Type
@@ -1447,7 +1339,6 @@ class CodePart(AbstractModel):
1447
1339
  @property
1448
1340
  def Value(self):
1449
1341
  """码段内容
1450
- 注意:此字段可能返回 null,表示取不到有效值。
1451
1342
  :rtype: str
1452
1343
  """
1453
1344
  return self._Value
@@ -1470,7 +1361,6 @@ class CodePart(AbstractModel):
1470
1361
  @property
1471
1362
  def Ext(self):
1472
1363
  """扩展字段
1473
- 注意:此字段可能返回 null,表示取不到有效值。
1474
1364
  :rtype: str
1475
1365
  """
1476
1366
  return self._Ext
@@ -2322,7 +2212,6 @@ class CreateCorporationOrderResponse(AbstractModel):
2322
2212
  def __init__(self):
2323
2213
  r"""
2324
2214
  :param _CorpId: 企业ID
2325
- 注意:此字段可能返回 null,表示取不到有效值。
2326
2215
  :type CorpId: int
2327
2216
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2328
2217
  :type RequestId: str
@@ -2333,7 +2222,6 @@ class CreateCorporationOrderResponse(AbstractModel):
2333
2222
  @property
2334
2223
  def CorpId(self):
2335
2224
  """企业ID
2336
- 注意:此字段可能返回 null,表示取不到有效值。
2337
2225
  :rtype: int
2338
2226
  """
2339
2227
  return self._CorpId
@@ -2741,7 +2629,6 @@ class CreateCustomRuleResponse(AbstractModel):
2741
2629
  def __init__(self):
2742
2630
  r"""
2743
2631
  :param _CustomId: 码规则ID
2744
- 注意:此字段可能返回 null,表示取不到有效值。
2745
2632
  :type CustomId: str
2746
2633
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2747
2634
  :type RequestId: str
@@ -2752,7 +2639,6 @@ class CreateCustomRuleResponse(AbstractModel):
2752
2639
  @property
2753
2640
  def CustomId(self):
2754
2641
  """码规则ID
2755
- 注意:此字段可能返回 null,表示取不到有效值。
2756
2642
  :rtype: str
2757
2643
  """
2758
2644
  return self._CustomId
@@ -2882,7 +2768,6 @@ class CreateMerchantResponse(AbstractModel):
2882
2768
  def __init__(self):
2883
2769
  r"""
2884
2770
  :param _MerchantId: 商户标识码
2885
- 注意:此字段可能返回 null,表示取不到有效值。
2886
2771
  :type MerchantId: str
2887
2772
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2888
2773
  :type RequestId: str
@@ -2893,7 +2778,6 @@ class CreateMerchantResponse(AbstractModel):
2893
2778
  @property
2894
2779
  def MerchantId(self):
2895
2780
  """商户标识码
2896
- 注意:此字段可能返回 null,表示取不到有效值。
2897
2781
  :rtype: str
2898
2782
  """
2899
2783
  return self._MerchantId
@@ -3070,7 +2954,6 @@ class CreateProductResponse(AbstractModel):
3070
2954
  def __init__(self):
3071
2955
  r"""
3072
2956
  :param _ProductId: 商品ID
3073
- 注意:此字段可能返回 null,表示取不到有效值。
3074
2957
  :type ProductId: str
3075
2958
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3076
2959
  :type RequestId: str
@@ -3081,7 +2964,6 @@ class CreateProductResponse(AbstractModel):
3081
2964
  @property
3082
2965
  def ProductId(self):
3083
2966
  """商品ID
3084
- 注意:此字段可能返回 null,表示取不到有效值。
3085
2967
  :rtype: str
3086
2968
  """
3087
2969
  return self._ProductId
@@ -3275,7 +3157,6 @@ class CreateTraceCodesAsyncResponse(AbstractModel):
3275
3157
  def __init__(self):
3276
3158
  r"""
3277
3159
  :param _BatchId: 批次ID
3278
- 注意:此字段可能返回 null,表示取不到有效值。
3279
3160
  :type BatchId: str
3280
3161
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3281
3162
  :type RequestId: str
@@ -3286,7 +3167,6 @@ class CreateTraceCodesAsyncResponse(AbstractModel):
3286
3167
  @property
3287
3168
  def BatchId(self):
3288
3169
  """批次ID
3289
- 注意:此字段可能返回 null,表示取不到有效值。
3290
3170
  :rtype: str
3291
3171
  """
3292
3172
  return self._BatchId
@@ -3740,13 +3620,10 @@ class CustomRule(AbstractModel):
3740
3620
  :param _CustomId: 码规则ID
3741
3621
  :type CustomId: str
3742
3622
  :param _Name: 码规则名
3743
- 注意:此字段可能返回 null,表示取不到有效值。
3744
3623
  :type Name: str
3745
3624
  :param _CorpId: 企业ID
3746
- 注意:此字段可能返回 null,表示取不到有效值。
3747
3625
  :type CorpId: int
3748
3626
  :param _MerchantId: 商户ID
3749
- 注意:此字段可能返回 null,表示取不到有效值。
3750
3627
  :type MerchantId: str
3751
3628
  :param _CodeLength: 码ID长度
3752
3629
  :type CodeLength: int
@@ -3783,7 +3660,6 @@ class CustomRule(AbstractModel):
3783
3660
  @property
3784
3661
  def Name(self):
3785
3662
  """码规则名
3786
- 注意:此字段可能返回 null,表示取不到有效值。
3787
3663
  :rtype: str
3788
3664
  """
3789
3665
  return self._Name
@@ -3795,7 +3671,6 @@ class CustomRule(AbstractModel):
3795
3671
  @property
3796
3672
  def CorpId(self):
3797
3673
  """企业ID
3798
- 注意:此字段可能返回 null,表示取不到有效值。
3799
3674
  :rtype: int
3800
3675
  """
3801
3676
  return self._CorpId
@@ -3807,7 +3682,6 @@ class CustomRule(AbstractModel):
3807
3682
  @property
3808
3683
  def MerchantId(self):
3809
3684
  """商户ID
3810
- 注意:此字段可能返回 null,表示取不到有效值。
3811
3685
  :rtype: str
3812
3686
  """
3813
3687
  return self._MerchantId
@@ -4050,7 +3924,6 @@ class DeleteMerchantResponse(AbstractModel):
4050
3924
  def __init__(self):
4051
3925
  r"""
4052
3926
  :param _MerchantId: 商户标识码
4053
- 注意:此字段可能返回 null,表示取不到有效值。
4054
3927
  :type MerchantId: str
4055
3928
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4056
3929
  :type RequestId: str
@@ -4061,7 +3934,6 @@ class DeleteMerchantResponse(AbstractModel):
4061
3934
  @property
4062
3935
  def MerchantId(self):
4063
3936
  """商户标识码
4064
- 注意:此字段可能返回 null,表示取不到有效值。
4065
3937
  :rtype: str
4066
3938
  """
4067
3939
  return self._MerchantId
@@ -4146,7 +4018,6 @@ class DeleteProductResponse(AbstractModel):
4146
4018
  def __init__(self):
4147
4019
  r"""
4148
4020
  :param _ProductId: 商品ID
4149
- 注意:此字段可能返回 null,表示取不到有效值。
4150
4021
  :type ProductId: str
4151
4022
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4152
4023
  :type RequestId: str
@@ -4157,7 +4028,6 @@ class DeleteProductResponse(AbstractModel):
4157
4028
  @property
4158
4029
  def ProductId(self):
4159
4030
  """商品ID
4160
- 注意:此字段可能返回 null,表示取不到有效值。
4161
4031
  :rtype: str
4162
4032
  """
4163
4033
  return self._ProductId
@@ -4242,7 +4112,6 @@ class DeleteTraceDataResponse(AbstractModel):
4242
4112
  def __init__(self):
4243
4113
  r"""
4244
4114
  :param _TraceId: 溯源id
4245
- 注意:此字段可能返回 null,表示取不到有效值。
4246
4115
  :type TraceId: str
4247
4116
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4248
4117
  :type RequestId: str
@@ -4253,7 +4122,6 @@ class DeleteTraceDataResponse(AbstractModel):
4253
4122
  @property
4254
4123
  def TraceId(self):
4255
4124
  """溯源id
4256
- 注意:此字段可能返回 null,表示取不到有效值。
4257
4125
  :rtype: str
4258
4126
  """
4259
4127
  return self._TraceId
@@ -4837,10 +4705,8 @@ class DescribeCodeBatchsResponse(AbstractModel):
4837
4705
  def __init__(self):
4838
4706
  r"""
4839
4707
  :param _CodeBatchs: 批次列表
4840
- 注意:此字段可能返回 null,表示取不到有效值。
4841
4708
  :type CodeBatchs: list of CodeBatch
4842
4709
  :param _TotalCount: 总条数
4843
- 注意:此字段可能返回 null,表示取不到有效值。
4844
4710
  :type TotalCount: int
4845
4711
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4846
4712
  :type RequestId: str
@@ -4852,7 +4718,6 @@ class DescribeCodeBatchsResponse(AbstractModel):
4852
4718
  @property
4853
4719
  def CodeBatchs(self):
4854
4720
  """批次列表
4855
- 注意:此字段可能返回 null,表示取不到有效值。
4856
4721
  :rtype: list of CodeBatch
4857
4722
  """
4858
4723
  return self._CodeBatchs
@@ -4864,7 +4729,6 @@ class DescribeCodeBatchsResponse(AbstractModel):
4864
4729
  @property
4865
4730
  def TotalCount(self):
4866
4731
  """总条数
4867
- 注意:此字段可能返回 null,表示取不到有效值。
4868
4732
  :rtype: int
4869
4733
  """
4870
4734
  return self._TotalCount
@@ -4955,7 +4819,6 @@ class DescribeCodePackStatusResponse(AbstractModel):
4955
4819
  def __init__(self):
4956
4820
  r"""
4957
4821
  :param _Status: 码包状态 init: 初始化, pending: 执行中, done: 完成, error: 失败
4958
- 注意:此字段可能返回 null,表示取不到有效值。
4959
4822
  :type Status: str
4960
4823
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4961
4824
  :type RequestId: str
@@ -4966,7 +4829,6 @@ class DescribeCodePackStatusResponse(AbstractModel):
4966
4829
  @property
4967
4830
  def Status(self):
4968
4831
  """码包状态 init: 初始化, pending: 执行中, done: 完成, error: 失败
4969
- 注意:此字段可能返回 null,表示取不到有效值。
4970
4832
  :rtype: str
4971
4833
  """
4972
4834
  return self._Status
@@ -5051,13 +4913,10 @@ class DescribeCodePackUrlResponse(AbstractModel):
5051
4913
  def __init__(self):
5052
4914
  r"""
5053
4915
  :param _Url: 文字码包地址
5054
- 注意:此字段可能返回 null,表示取不到有效值。
5055
4916
  :type Url: str
5056
4917
  :param _ImgUrl: 图片码包地址,可能为空
5057
- 注意:此字段可能返回 null,表示取不到有效值。
5058
4918
  :type ImgUrl: str
5059
4919
  :param _FileKey: 文字码包Key,用于上传导入
5060
- 注意:此字段可能返回 null,表示取不到有效值。
5061
4920
  :type FileKey: str
5062
4921
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5063
4922
  :type RequestId: str
@@ -5070,7 +4929,6 @@ class DescribeCodePackUrlResponse(AbstractModel):
5070
4929
  @property
5071
4930
  def Url(self):
5072
4931
  """文字码包地址
5073
- 注意:此字段可能返回 null,表示取不到有效值。
5074
4932
  :rtype: str
5075
4933
  """
5076
4934
  return self._Url
@@ -5082,7 +4940,6 @@ class DescribeCodePackUrlResponse(AbstractModel):
5082
4940
  @property
5083
4941
  def ImgUrl(self):
5084
4942
  """图片码包地址,可能为空
5085
- 注意:此字段可能返回 null,表示取不到有效值。
5086
4943
  :rtype: str
5087
4944
  """
5088
4945
  return self._ImgUrl
@@ -5094,7 +4951,6 @@ class DescribeCodePackUrlResponse(AbstractModel):
5094
4951
  @property
5095
4952
  def FileKey(self):
5096
4953
  """文字码包Key,用于上传导入
5097
- 注意:此字段可能返回 null,表示取不到有效值。
5098
4954
  :rtype: str
5099
4955
  """
5100
4956
  return self._FileKey
@@ -5404,7 +5260,6 @@ class DescribeCodesByPackResponse(AbstractModel):
5404
5260
  def __init__(self):
5405
5261
  r"""
5406
5262
  :param _Codes: 码列表
5407
- 注意:此字段可能返回 null,表示取不到有效值。
5408
5263
  :type Codes: list of CodeItem
5409
5264
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5410
5265
  :type RequestId: str
@@ -5415,7 +5270,6 @@ class DescribeCodesByPackResponse(AbstractModel):
5415
5270
  @property
5416
5271
  def Codes(self):
5417
5272
  """码列表
5418
- 注意:此字段可能返回 null,表示取不到有效值。
5419
5273
  :rtype: list of CodeItem
5420
5274
  """
5421
5275
  return self._Codes
@@ -5535,10 +5389,8 @@ class DescribeCorpQuotasResponse(AbstractModel):
5535
5389
  def __init__(self):
5536
5390
  r"""
5537
5391
  :param _CorpQuotas: 子企业额度使用情况
5538
- 注意:此字段可能返回 null,表示取不到有效值。
5539
5392
  :type CorpQuotas: list of CorpQuota
5540
5393
  :param _Total: 记录总数量
5541
- 注意:此字段可能返回 null,表示取不到有效值。
5542
5394
  :type Total: int
5543
5395
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5544
5396
  :type RequestId: str
@@ -5550,7 +5402,6 @@ class DescribeCorpQuotasResponse(AbstractModel):
5550
5402
  @property
5551
5403
  def CorpQuotas(self):
5552
5404
  """子企业额度使用情况
5553
- 注意:此字段可能返回 null,表示取不到有效值。
5554
5405
  :rtype: list of CorpQuota
5555
5406
  """
5556
5407
  return self._CorpQuotas
@@ -5562,7 +5413,6 @@ class DescribeCorpQuotasResponse(AbstractModel):
5562
5413
  @property
5563
5414
  def Total(self):
5564
5415
  """记录总数量
5565
- 注意:此字段可能返回 null,表示取不到有效值。
5566
5416
  :rtype: int
5567
5417
  """
5568
5418
  return self._Total
@@ -5653,7 +5503,6 @@ class DescribeCustomRuleByIdResponse(AbstractModel):
5653
5503
  def __init__(self):
5654
5504
  r"""
5655
5505
  :param _CustomRule: 码规则信息
5656
- 注意:此字段可能返回 null,表示取不到有效值。
5657
5506
  :type CustomRule: :class:`tencentcloud.trp.v20210515.models.CustomRule`
5658
5507
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5659
5508
  :type RequestId: str
@@ -5664,7 +5513,6 @@ class DescribeCustomRuleByIdResponse(AbstractModel):
5664
5513
  @property
5665
5514
  def CustomRule(self):
5666
5515
  """码规则信息
5667
- 注意:此字段可能返回 null,表示取不到有效值。
5668
5516
  :rtype: :class:`tencentcloud.trp.v20210515.models.CustomRule`
5669
5517
  """
5670
5518
  return self._CustomRule
@@ -5811,10 +5659,8 @@ class DescribeCustomRulesResponse(AbstractModel):
5811
5659
  def __init__(self):
5812
5660
  r"""
5813
5661
  :param _CustomRules: 码规则列表
5814
- 注意:此字段可能返回 null,表示取不到有效值。
5815
5662
  :type CustomRules: list of CustomRule
5816
5663
  :param _TotalCount: 总数
5817
- 注意:此字段可能返回 null,表示取不到有效值。
5818
5664
  :type TotalCount: int
5819
5665
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5820
5666
  :type RequestId: str
@@ -5826,7 +5672,6 @@ class DescribeCustomRulesResponse(AbstractModel):
5826
5672
  @property
5827
5673
  def CustomRules(self):
5828
5674
  """码规则列表
5829
- 注意:此字段可能返回 null,表示取不到有效值。
5830
5675
  :rtype: list of CustomRule
5831
5676
  """
5832
5677
  return self._CustomRules
@@ -5838,7 +5683,6 @@ class DescribeCustomRulesResponse(AbstractModel):
5838
5683
  @property
5839
5684
  def TotalCount(self):
5840
5685
  """总数
5841
- 注意:此字段可能返回 null,表示取不到有效值。
5842
5686
  :rtype: int
5843
5687
  """
5844
5688
  return self._TotalCount
@@ -5929,7 +5773,6 @@ class DescribeJobFileUrlResponse(AbstractModel):
5929
5773
  def __init__(self):
5930
5774
  r"""
5931
5775
  :param _Url: 码包地址
5932
- 注意:此字段可能返回 null,表示取不到有效值。
5933
5776
  :type Url: str
5934
5777
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5935
5778
  :type RequestId: str
@@ -5940,7 +5783,6 @@ class DescribeJobFileUrlResponse(AbstractModel):
5940
5783
  @property
5941
5784
  def Url(self):
5942
5785
  """码包地址
5943
- 注意:此字段可能返回 null,表示取不到有效值。
5944
5786
  :rtype: str
5945
5787
  """
5946
5788
  return self._Url
@@ -6025,7 +5867,6 @@ class DescribeMerchantByIdResponse(AbstractModel):
6025
5867
  def __init__(self):
6026
5868
  r"""
6027
5869
  :param _Merchant: 商户信息
6028
- 注意:此字段可能返回 null,表示取不到有效值。
6029
5870
  :type Merchant: :class:`tencentcloud.trp.v20210515.models.Merchant`
6030
5871
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6031
5872
  :type RequestId: str
@@ -6036,7 +5877,6 @@ class DescribeMerchantByIdResponse(AbstractModel):
6036
5877
  @property
6037
5878
  def Merchant(self):
6038
5879
  """商户信息
6039
- 注意:此字段可能返回 null,表示取不到有效值。
6040
5880
  :rtype: :class:`tencentcloud.trp.v20210515.models.Merchant`
6041
5881
  """
6042
5882
  return self._Merchant
@@ -6168,10 +6008,8 @@ class DescribeMerchantsResponse(AbstractModel):
6168
6008
  def __init__(self):
6169
6009
  r"""
6170
6010
  :param _Merchants: 商户列表
6171
- 注意:此字段可能返回 null,表示取不到有效值。
6172
6011
  :type Merchants: list of Merchant
6173
6012
  :param _TotalCount: 总数
6174
- 注意:此字段可能返回 null,表示取不到有效值。
6175
6013
  :type TotalCount: int
6176
6014
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6177
6015
  :type RequestId: str
@@ -6183,7 +6021,6 @@ class DescribeMerchantsResponse(AbstractModel):
6183
6021
  @property
6184
6022
  def Merchants(self):
6185
6023
  """商户列表
6186
- 注意:此字段可能返回 null,表示取不到有效值。
6187
6024
  :rtype: list of Merchant
6188
6025
  """
6189
6026
  return self._Merchants
@@ -6195,7 +6032,6 @@ class DescribeMerchantsResponse(AbstractModel):
6195
6032
  @property
6196
6033
  def TotalCount(self):
6197
6034
  """总数
6198
- 注意:此字段可能返回 null,表示取不到有效值。
6199
6035
  :rtype: int
6200
6036
  """
6201
6037
  return self._TotalCount
@@ -6619,7 +6455,6 @@ class DescribeProductByIdResponse(AbstractModel):
6619
6455
  def __init__(self):
6620
6456
  r"""
6621
6457
  :param _Product: 商品信息
6622
- 注意:此字段可能返回 null,表示取不到有效值。
6623
6458
  :type Product: :class:`tencentcloud.trp.v20210515.models.Product`
6624
6459
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6625
6460
  :type RequestId: str
@@ -6630,7 +6465,6 @@ class DescribeProductByIdResponse(AbstractModel):
6630
6465
  @property
6631
6466
  def Product(self):
6632
6467
  """商品信息
6633
- 注意:此字段可能返回 null,表示取不到有效值。
6634
6468
  :rtype: :class:`tencentcloud.trp.v20210515.models.Product`
6635
6469
  """
6636
6470
  return self._Product
@@ -6777,10 +6611,8 @@ class DescribeProductsResponse(AbstractModel):
6777
6611
  def __init__(self):
6778
6612
  r"""
6779
6613
  :param _Products: 商品列表
6780
- 注意:此字段可能返回 null,表示取不到有效值。
6781
6614
  :type Products: list of Product
6782
6615
  :param _TotalCount: 总数
6783
- 注意:此字段可能返回 null,表示取不到有效值。
6784
6616
  :type TotalCount: int
6785
6617
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6786
6618
  :type RequestId: str
@@ -6792,7 +6624,6 @@ class DescribeProductsResponse(AbstractModel):
6792
6624
  @property
6793
6625
  def Products(self):
6794
6626
  """商品列表
6795
- 注意:此字段可能返回 null,表示取不到有效值。
6796
6627
  :rtype: list of Product
6797
6628
  """
6798
6629
  return self._Products
@@ -6804,7 +6635,6 @@ class DescribeProductsResponse(AbstractModel):
6804
6635
  @property
6805
6636
  def TotalCount(self):
6806
6637
  """总数
6807
- 注意:此字段可能返回 null,表示取不到有效值。
6808
6638
  :rtype: int
6809
6639
  """
6810
6640
  return self._TotalCount
@@ -7400,7 +7230,6 @@ class DescribeTmpTokenResponse(AbstractModel):
7400
7230
  def __init__(self):
7401
7231
  r"""
7402
7232
  :param _Token: 临时token
7403
- 注意:此字段可能返回 null,表示取不到有效值。
7404
7233
  :type Token: str
7405
7234
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7406
7235
  :type RequestId: str
@@ -7411,7 +7240,6 @@ class DescribeTmpTokenResponse(AbstractModel):
7411
7240
  @property
7412
7241
  def Token(self):
7413
7242
  """临时token
7414
- 注意:此字段可能返回 null,表示取不到有效值。
7415
7243
  :rtype: str
7416
7244
  """
7417
7245
  return self._Token
@@ -7652,10 +7480,8 @@ class DescribeTraceCodesResponse(AbstractModel):
7652
7480
  def __init__(self):
7653
7481
  r"""
7654
7482
  :param _TraceCodes: 标识列表
7655
- 注意:此字段可能返回 null,表示取不到有效值。
7656
7483
  :type TraceCodes: list of TraceCode
7657
7484
  :param _TotalCount: 条数
7658
- 注意:此字段可能返回 null,表示取不到有效值。
7659
7485
  :type TotalCount: int
7660
7486
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7661
7487
  :type RequestId: str
@@ -7667,7 +7493,6 @@ class DescribeTraceCodesResponse(AbstractModel):
7667
7493
  @property
7668
7494
  def TraceCodes(self):
7669
7495
  """标识列表
7670
- 注意:此字段可能返回 null,表示取不到有效值。
7671
7496
  :rtype: list of TraceCode
7672
7497
  """
7673
7498
  return self._TraceCodes
@@ -7679,7 +7504,6 @@ class DescribeTraceCodesResponse(AbstractModel):
7679
7504
  @property
7680
7505
  def TotalCount(self):
7681
7506
  """条数
7682
- 注意:此字段可能返回 null,表示取不到有效值。
7683
7507
  :rtype: int
7684
7508
  """
7685
7509
  return self._TotalCount
@@ -8305,7 +8129,6 @@ class Merchant(AbstractModel):
8305
8129
  :param _Name: 商户名称
8306
8130
  :type Name: str
8307
8131
  :param _Remark: 备注
8308
- 注意:此字段可能返回 null,表示取不到有效值。
8309
8132
  :type Remark: str
8310
8133
  :param _CreateTime: 创建时间
8311
8134
  :type CreateTime: str
@@ -8316,7 +8139,6 @@ class Merchant(AbstractModel):
8316
8139
  :param _CodeType: 码来源类型 0: 安心平台 1: 第三方码
8317
8140
  :type CodeType: int
8318
8141
  :param _CodeUrl: 第三方码域名前缀
8319
- 注意:此字段可能返回 null,表示取不到有效值。
8320
8142
  :type CodeUrl: str
8321
8143
  """
8322
8144
  self._MerchantId = None
@@ -8365,7 +8187,6 @@ class Merchant(AbstractModel):
8365
8187
  @property
8366
8188
  def Remark(self):
8367
8189
  """备注
8368
- 注意:此字段可能返回 null,表示取不到有效值。
8369
8190
  :rtype: str
8370
8191
  """
8371
8192
  return self._Remark
@@ -8421,7 +8242,6 @@ class Merchant(AbstractModel):
8421
8242
  @property
8422
8243
  def CodeUrl(self):
8423
8244
  """第三方码域名前缀
8424
- 注意:此字段可能返回 null,表示取不到有效值。
8425
8245
  :rtype: str
8426
8246
  """
8427
8247
  return self._CodeUrl
@@ -8774,7 +8594,6 @@ class ModifyCustomRuleResponse(AbstractModel):
8774
8594
  def __init__(self):
8775
8595
  r"""
8776
8596
  :param _CustomId: 码规则ID
8777
- 注意:此字段可能返回 null,表示取不到有效值。
8778
8597
  :type CustomId: str
8779
8598
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8780
8599
  :type RequestId: str
@@ -8785,7 +8604,6 @@ class ModifyCustomRuleResponse(AbstractModel):
8785
8604
  @property
8786
8605
  def CustomId(self):
8787
8606
  """码规则ID
8788
- 注意:此字段可能返回 null,表示取不到有效值。
8789
8607
  :rtype: str
8790
8608
  """
8791
8609
  return self._CustomId
@@ -8885,7 +8703,6 @@ class ModifyCustomRuleStatusResponse(AbstractModel):
8885
8703
  def __init__(self):
8886
8704
  r"""
8887
8705
  :param _CustomId: 码规则ID
8888
- 注意:此字段可能返回 null,表示取不到有效值。
8889
8706
  :type CustomId: str
8890
8707
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8891
8708
  :type RequestId: str
@@ -8896,7 +8713,6 @@ class ModifyCustomRuleStatusResponse(AbstractModel):
8896
8713
  @property
8897
8714
  def CustomId(self):
8898
8715
  """码规则ID
8899
- 注意:此字段可能返回 null,表示取不到有效值。
8900
8716
  :rtype: str
8901
8717
  """
8902
8718
  return self._CustomId
@@ -9041,7 +8857,6 @@ class ModifyMerchantResponse(AbstractModel):
9041
8857
  def __init__(self):
9042
8858
  r"""
9043
8859
  :param _MerchantId: 商户标识码
9044
- 注意:此字段可能返回 null,表示取不到有效值。
9045
8860
  :type MerchantId: str
9046
8861
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9047
8862
  :type RequestId: str
@@ -9052,7 +8867,6 @@ class ModifyMerchantResponse(AbstractModel):
9052
8867
  @property
9053
8868
  def MerchantId(self):
9054
8869
  """商户标识码
9055
- 注意:此字段可能返回 null,表示取不到有效值。
9056
8870
  :rtype: str
9057
8871
  """
9058
8872
  return self._MerchantId
@@ -9214,7 +9028,6 @@ class ModifyProductResponse(AbstractModel):
9214
9028
  def __init__(self):
9215
9029
  r"""
9216
9030
  :param _ProductId: 商品ID
9217
- 注意:此字段可能返回 null,表示取不到有效值。
9218
9031
  :type ProductId: str
9219
9032
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9220
9033
  :type RequestId: str
@@ -9225,7 +9038,6 @@ class ModifyProductResponse(AbstractModel):
9225
9038
  @property
9226
9039
  def ProductId(self):
9227
9040
  """商品ID
9228
- 注意:此字段可能返回 null,表示取不到有效值。
9229
9041
  :rtype: str
9230
9042
  """
9231
9043
  return self._ProductId
@@ -9573,7 +9385,6 @@ class ModifyTraceDataRanksResponse(AbstractModel):
9573
9385
  def __init__(self):
9574
9386
  r"""
9575
9387
  :param _BatchId: 批次ID
9576
- 注意:此字段可能返回 null,表示取不到有效值。
9577
9388
  :type BatchId: str
9578
9389
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9579
9390
  :type RequestId: str
@@ -9584,7 +9395,6 @@ class ModifyTraceDataRanksResponse(AbstractModel):
9584
9395
  @property
9585
9396
  def BatchId(self):
9586
9397
  """批次ID
9587
- 注意:此字段可能返回 null,表示取不到有效值。
9588
9398
  :rtype: str
9589
9399
  """
9590
9400
  return self._BatchId
@@ -9946,13 +9756,10 @@ class OutputAuthorizedTransfer(AbstractModel):
9946
9756
  def __init__(self):
9947
9757
  r"""
9948
9758
  :param _Code: 推送状态,0表示成功。
9949
- 注意:此字段可能返回 null,表示取不到有效值。
9950
9759
  :type Code: int
9951
9760
  :param _Message: 错误码。
9952
- 注意:此字段可能返回 null,表示取不到有效值。
9953
9761
  :type Message: str
9954
9762
  :param _Value: 错误信息描述。
9955
- 注意:此字段可能返回 null,表示取不到有效值。
9956
9763
  :type Value: str
9957
9764
  """
9958
9765
  self._Code = None
@@ -9962,7 +9769,6 @@ class OutputAuthorizedTransfer(AbstractModel):
9962
9769
  @property
9963
9770
  def Code(self):
9964
9771
  """推送状态,0表示成功。
9965
- 注意:此字段可能返回 null,表示取不到有效值。
9966
9772
  :rtype: int
9967
9773
  """
9968
9774
  return self._Code
@@ -9974,7 +9780,6 @@ class OutputAuthorizedTransfer(AbstractModel):
9974
9780
  @property
9975
9781
  def Message(self):
9976
9782
  """错误码。
9977
- 注意:此字段可能返回 null,表示取不到有效值。
9978
9783
  :rtype: str
9979
9784
  """
9980
9785
  return self._Message
@@ -9986,7 +9791,6 @@ class OutputAuthorizedTransfer(AbstractModel):
9986
9791
  @property
9987
9792
  def Value(self):
9988
9793
  """错误信息描述。
9989
- 注意:此字段可能返回 null,表示取不到有效值。
9990
9794
  :rtype: str
9991
9795
  """
9992
9796
  return self._Value
@@ -10024,16 +9828,12 @@ class PackSpec(AbstractModel):
10024
9828
  :param _Amount: 数量
10025
9829
  :type Amount: int
10026
9830
  :param _CustomId: 码规则ID
10027
- 注意:此字段可能返回 null,表示取不到有效值。
10028
9831
  :type CustomId: str
10029
9832
  :param _CodeParts: 码段配置
10030
- 注意:此字段可能返回 null,表示取不到有效值。
10031
9833
  :type CodeParts: list of CodePart
10032
9834
  :param _Unit: 包装单位
10033
- 注意:此字段可能返回 null,表示取不到有效值。
10034
9835
  :type Unit: str
10035
9836
  :param _SceneCode: 场景值
10036
- 注意:此字段可能返回 null,表示取不到有效值。
10037
9837
  :type SceneCode: int
10038
9838
  """
10039
9839
  self._Level = None
@@ -10080,7 +9880,6 @@ class PackSpec(AbstractModel):
10080
9880
  @property
10081
9881
  def CustomId(self):
10082
9882
  """码规则ID
10083
- 注意:此字段可能返回 null,表示取不到有效值。
10084
9883
  :rtype: str
10085
9884
  """
10086
9885
  return self._CustomId
@@ -10092,7 +9891,6 @@ class PackSpec(AbstractModel):
10092
9891
  @property
10093
9892
  def CodeParts(self):
10094
9893
  """码段配置
10095
- 注意:此字段可能返回 null,表示取不到有效值。
10096
9894
  :rtype: list of CodePart
10097
9895
  """
10098
9896
  return self._CodeParts
@@ -10104,7 +9902,6 @@ class PackSpec(AbstractModel):
10104
9902
  @property
10105
9903
  def Unit(self):
10106
9904
  """包装单位
10107
- 注意:此字段可能返回 null,表示取不到有效值。
10108
9905
  :rtype: str
10109
9906
  """
10110
9907
  return self._Unit
@@ -10116,7 +9913,6 @@ class PackSpec(AbstractModel):
10116
9913
  @property
10117
9914
  def SceneCode(self):
10118
9915
  """场景值
10119
- 注意:此字段可能返回 null,表示取不到有效值。
10120
9916
  :rtype: int
10121
9917
  """
10122
9918
  return self._SceneCode
@@ -10157,22 +9953,16 @@ class PhaseData(AbstractModel):
10157
9953
  def __init__(self):
10158
9954
  r"""
10159
9955
  :param _HeadEnabled: 启用头
10160
- 注意:此字段可能返回 null,表示取不到有效值。
10161
9956
  :type HeadEnabled: bool
10162
9957
  :param _HeadTitle: 标题
10163
- 注意:此字段可能返回 null,表示取不到有效值。
10164
9958
  :type HeadTitle: str
10165
9959
  :param _Key: 标识符
10166
- 注意:此字段可能返回 null,表示取不到有效值。
10167
9960
  :type Key: str
10168
9961
  :param _AppId: 小程序AppId
10169
- 注意:此字段可能返回 null,表示取不到有效值。
10170
9962
  :type AppId: str
10171
9963
  :param _AppPath: 小程序AppPath
10172
- 注意:此字段可能返回 null,表示取不到有效值。
10173
9964
  :type AppPath: str
10174
9965
  :param _AppName: 小程序名称AppName
10175
- 注意:此字段可能返回 null,表示取不到有效值。
10176
9966
  :type AppName: str
10177
9967
  """
10178
9968
  self._HeadEnabled = None
@@ -10185,7 +9975,6 @@ class PhaseData(AbstractModel):
10185
9975
  @property
10186
9976
  def HeadEnabled(self):
10187
9977
  """启用头
10188
- 注意:此字段可能返回 null,表示取不到有效值。
10189
9978
  :rtype: bool
10190
9979
  """
10191
9980
  return self._HeadEnabled
@@ -10197,7 +9986,6 @@ class PhaseData(AbstractModel):
10197
9986
  @property
10198
9987
  def HeadTitle(self):
10199
9988
  """标题
10200
- 注意:此字段可能返回 null,表示取不到有效值。
10201
9989
  :rtype: str
10202
9990
  """
10203
9991
  return self._HeadTitle
@@ -10209,7 +9997,6 @@ class PhaseData(AbstractModel):
10209
9997
  @property
10210
9998
  def Key(self):
10211
9999
  """标识符
10212
- 注意:此字段可能返回 null,表示取不到有效值。
10213
10000
  :rtype: str
10214
10001
  """
10215
10002
  return self._Key
@@ -10221,7 +10008,6 @@ class PhaseData(AbstractModel):
10221
10008
  @property
10222
10009
  def AppId(self):
10223
10010
  """小程序AppId
10224
- 注意:此字段可能返回 null,表示取不到有效值。
10225
10011
  :rtype: str
10226
10012
  """
10227
10013
  return self._AppId
@@ -10233,7 +10019,6 @@ class PhaseData(AbstractModel):
10233
10019
  @property
10234
10020
  def AppPath(self):
10235
10021
  """小程序AppPath
10236
- 注意:此字段可能返回 null,表示取不到有效值。
10237
10022
  :rtype: str
10238
10023
  """
10239
10024
  return self._AppPath
@@ -10245,7 +10030,6 @@ class PhaseData(AbstractModel):
10245
10030
  @property
10246
10031
  def AppName(self):
10247
10032
  """小程序名称AppName
10248
- 注意:此字段可能返回 null,表示取不到有效值。
10249
10033
  :rtype: str
10250
10034
  """
10251
10035
  return self._AppName
@@ -10280,10 +10064,8 @@ class PlanQRCode(AbstractModel):
10280
10064
  def __init__(self):
10281
10065
  r"""
10282
10066
  :param _Url: 二维码
10283
- 注意:此字段可能返回 null,表示取不到有效值。
10284
10067
  :type Url: str
10285
10068
  :param _Status: 状态,0:未激活 1:已激活 2:已冻结
10286
- 注意:此字段可能返回 null,表示取不到有效值。
10287
10069
  :type Status: int
10288
10070
  """
10289
10071
  self._Url = None
@@ -10292,7 +10074,6 @@ class PlanQRCode(AbstractModel):
10292
10074
  @property
10293
10075
  def Url(self):
10294
10076
  """二维码
10295
- 注意:此字段可能返回 null,表示取不到有效值。
10296
10077
  :rtype: str
10297
10078
  """
10298
10079
  return self._Url
@@ -10304,7 +10085,6 @@ class PlanQRCode(AbstractModel):
10304
10085
  @property
10305
10086
  def Status(self):
10306
10087
  """状态,0:未激活 1:已激活 2:已冻结
10307
- 注意:此字段可能返回 null,表示取不到有效值。
10308
10088
  :rtype: int
10309
10089
  """
10310
10090
  return self._Status
@@ -10335,25 +10115,18 @@ class PlanQRCodeRecord(AbstractModel):
10335
10115
  def __init__(self):
10336
10116
  r"""
10337
10117
  :param _Url: 二维码
10338
- 注意:此字段可能返回 null,表示取不到有效值。
10339
10118
  :type Url: str
10340
10119
  :param _OpenId: OpenID
10341
- 注意:此字段可能返回 null,表示取不到有效值。
10342
10120
  :type OpenId: str
10343
10121
  :param _ScanTime: 扫码时间
10344
- 注意:此字段可能返回 null,表示取不到有效值。
10345
10122
  :type ScanTime: str
10346
10123
  :param _Ip: IP 地址
10347
- 注意:此字段可能返回 null,表示取不到有效值。
10348
10124
  :type Ip: str
10349
10125
  :param _Country: 国家
10350
- 注意:此字段可能返回 null,表示取不到有效值。
10351
10126
  :type Country: str
10352
10127
  :param _Province: 省份
10353
- 注意:此字段可能返回 null,表示取不到有效值。
10354
10128
  :type Province: str
10355
10129
  :param _City: 城市
10356
- 注意:此字段可能返回 null,表示取不到有效值。
10357
10130
  :type City: str
10358
10131
  """
10359
10132
  self._Url = None
@@ -10367,7 +10140,6 @@ class PlanQRCodeRecord(AbstractModel):
10367
10140
  @property
10368
10141
  def Url(self):
10369
10142
  """二维码
10370
- 注意:此字段可能返回 null,表示取不到有效值。
10371
10143
  :rtype: str
10372
10144
  """
10373
10145
  return self._Url
@@ -10379,7 +10151,6 @@ class PlanQRCodeRecord(AbstractModel):
10379
10151
  @property
10380
10152
  def OpenId(self):
10381
10153
  """OpenID
10382
- 注意:此字段可能返回 null,表示取不到有效值。
10383
10154
  :rtype: str
10384
10155
  """
10385
10156
  return self._OpenId
@@ -10391,7 +10162,6 @@ class PlanQRCodeRecord(AbstractModel):
10391
10162
  @property
10392
10163
  def ScanTime(self):
10393
10164
  """扫码时间
10394
- 注意:此字段可能返回 null,表示取不到有效值。
10395
10165
  :rtype: str
10396
10166
  """
10397
10167
  return self._ScanTime
@@ -10403,7 +10173,6 @@ class PlanQRCodeRecord(AbstractModel):
10403
10173
  @property
10404
10174
  def Ip(self):
10405
10175
  """IP 地址
10406
- 注意:此字段可能返回 null,表示取不到有效值。
10407
10176
  :rtype: str
10408
10177
  """
10409
10178
  return self._Ip
@@ -10415,7 +10184,6 @@ class PlanQRCodeRecord(AbstractModel):
10415
10184
  @property
10416
10185
  def Country(self):
10417
10186
  """国家
10418
- 注意:此字段可能返回 null,表示取不到有效值。
10419
10187
  :rtype: str
10420
10188
  """
10421
10189
  return self._Country
@@ -10427,7 +10195,6 @@ class PlanQRCodeRecord(AbstractModel):
10427
10195
  @property
10428
10196
  def Province(self):
10429
10197
  """省份
10430
- 注意:此字段可能返回 null,表示取不到有效值。
10431
10198
  :rtype: str
10432
10199
  """
10433
10200
  return self._Province
@@ -10439,7 +10206,6 @@ class PlanQRCodeRecord(AbstractModel):
10439
10206
  @property
10440
10207
  def City(self):
10441
10208
  """城市
10442
- 注意:此字段可能返回 null,表示取不到有效值。
10443
10209
  :rtype: str
10444
10210
  """
10445
10211
  return self._City
@@ -10485,25 +10251,20 @@ class Product(AbstractModel):
10485
10251
  :param _ProductCode: 商品编号
10486
10252
  :type ProductCode: str
10487
10253
  :param _Specification: 商品规格
10488
- 注意:此字段可能返回 null,表示取不到有效值。
10489
10254
  :type Specification: str
10490
10255
  :param _Remark: 备注
10491
- 注意:此字段可能返回 null,表示取不到有效值。
10492
10256
  :type Remark: str
10493
10257
  :param _Logo: 商品图片
10494
- 注意:此字段可能返回 null,表示取不到有效值。
10495
10258
  :type Logo: list of str
10496
10259
  :param _CreateTime: 创建时间
10497
10260
  :type CreateTime: str
10498
10261
  :param _UpdateTime: 修改时间
10499
10262
  :type UpdateTime: str
10500
10263
  :param _Ext: 预留字段
10501
- 注意:此字段可能返回 null,表示取不到有效值。
10502
10264
  :type Ext: :class:`tencentcloud.trp.v20210515.models.Ext`
10503
10265
  :param _MerchantName: 商户名称
10504
10266
  :type MerchantName: str
10505
10267
  :param _CertState: 认证状态
10506
- 注意:此字段可能返回 null,表示取不到有效值。
10507
10268
  :type CertState: int
10508
10269
  """
10509
10270
  self._MerchantId = None
@@ -10578,7 +10339,6 @@ class Product(AbstractModel):
10578
10339
  @property
10579
10340
  def Specification(self):
10580
10341
  """商品规格
10581
- 注意:此字段可能返回 null,表示取不到有效值。
10582
10342
  :rtype: str
10583
10343
  """
10584
10344
  return self._Specification
@@ -10590,7 +10350,6 @@ class Product(AbstractModel):
10590
10350
  @property
10591
10351
  def Remark(self):
10592
10352
  """备注
10593
- 注意:此字段可能返回 null,表示取不到有效值。
10594
10353
  :rtype: str
10595
10354
  """
10596
10355
  return self._Remark
@@ -10602,7 +10361,6 @@ class Product(AbstractModel):
10602
10361
  @property
10603
10362
  def Logo(self):
10604
10363
  """商品图片
10605
- 注意:此字段可能返回 null,表示取不到有效值。
10606
10364
  :rtype: list of str
10607
10365
  """
10608
10366
  return self._Logo
@@ -10636,7 +10394,6 @@ class Product(AbstractModel):
10636
10394
  @property
10637
10395
  def Ext(self):
10638
10396
  """预留字段
10639
- 注意:此字段可能返回 null,表示取不到有效值。
10640
10397
  :rtype: :class:`tencentcloud.trp.v20210515.models.Ext`
10641
10398
  """
10642
10399
  return self._Ext
@@ -10659,7 +10416,6 @@ class Product(AbstractModel):
10659
10416
  @property
10660
10417
  def CertState(self):
10661
10418
  """认证状态
10662
- 注意:此字段可能返回 null,表示取不到有效值。
10663
10419
  :rtype: int
10664
10420
  """
10665
10421
  return self._CertState
@@ -10703,52 +10459,36 @@ class Quota(AbstractModel):
10703
10459
  def __init__(self):
10704
10460
  r"""
10705
10461
  :param _StartTime: 服务开始时间
10706
- 注意:此字段可能返回 null,表示取不到有效值。
10707
10462
  :type StartTime: str
10708
10463
  :param _EndTime: 服务结束时间
10709
- 注意:此字段可能返回 null,表示取不到有效值。
10710
10464
  :type EndTime: str
10711
10465
  :param _QuotaId: 配额ID
10712
- 注意:此字段可能返回 null,表示取不到有效值。
10713
10466
  :type QuotaId: int
10714
10467
  :param _CorpId: 企业ID
10715
- 注意:此字段可能返回 null,表示取不到有效值。
10716
10468
  :type CorpId: int
10717
10469
  :param _Services: 开通服务
10718
- 注意:此字段可能返回 null,表示取不到有效值。
10719
10470
  :type Services: list of str
10720
10471
  :param _FactoryQuota: 商户配额
10721
- 注意:此字段可能返回 null,表示取不到有效值。
10722
10472
  :type FactoryQuota: int
10723
10473
  :param _ItemQuota: 商品配额
10724
- 注意:此字段可能返回 null,表示取不到有效值。
10725
10474
  :type ItemQuota: int
10726
10475
  :param _TrackQuota: 溯源码配额
10727
- 注意:此字段可能返回 null,表示取不到有效值。
10728
10476
  :type TrackQuota: int
10729
10477
  :param _SaleQuota: 销售码配额
10730
- 注意:此字段可能返回 null,表示取不到有效值。
10731
10478
  :type SaleQuota: int
10732
10479
  :param _ChainQuota: 上链配额
10733
- 注意:此字段可能返回 null,表示取不到有效值。
10734
10480
  :type ChainQuota: int
10735
10481
  :param _RiskQuota: 风控配额
10736
- 注意:此字段可能返回 null,表示取不到有效值。
10737
10482
  :type RiskQuota: int
10738
10483
  :param _AigcTextQuota: AI文字数量
10739
- 注意:此字段可能返回 null,表示取不到有效值。
10740
10484
  :type AigcTextQuota: int
10741
10485
  :param _AigcImageQuota: AI图片数量
10742
- 注意:此字段可能返回 null,表示取不到有效值。
10743
10486
  :type AigcImageQuota: int
10744
10487
  :param _TrackType: 溯源类型
10745
- 注意:此字段可能返回 null,表示取不到有效值。
10746
10488
  :type TrackType: int
10747
10489
  :param _Version: 开通版本 lite:轻量版, basic:基础版, standard:标准版
10748
- 注意:此字段可能返回 null,表示取不到有效值。
10749
10490
  :type Version: str
10750
10491
  :param _ProductCertify: 是否开启企业认证
10751
- 注意:此字段可能返回 null,表示取不到有效值。
10752
10492
  :type ProductCertify: int
10753
10493
  """
10754
10494
  self._StartTime = None
@@ -10771,7 +10511,6 @@ class Quota(AbstractModel):
10771
10511
  @property
10772
10512
  def StartTime(self):
10773
10513
  """服务开始时间
10774
- 注意:此字段可能返回 null,表示取不到有效值。
10775
10514
  :rtype: str
10776
10515
  """
10777
10516
  return self._StartTime
@@ -10783,7 +10522,6 @@ class Quota(AbstractModel):
10783
10522
  @property
10784
10523
  def EndTime(self):
10785
10524
  """服务结束时间
10786
- 注意:此字段可能返回 null,表示取不到有效值。
10787
10525
  :rtype: str
10788
10526
  """
10789
10527
  return self._EndTime
@@ -10795,7 +10533,6 @@ class Quota(AbstractModel):
10795
10533
  @property
10796
10534
  def QuotaId(self):
10797
10535
  """配额ID
10798
- 注意:此字段可能返回 null,表示取不到有效值。
10799
10536
  :rtype: int
10800
10537
  """
10801
10538
  return self._QuotaId
@@ -10807,7 +10544,6 @@ class Quota(AbstractModel):
10807
10544
  @property
10808
10545
  def CorpId(self):
10809
10546
  """企业ID
10810
- 注意:此字段可能返回 null,表示取不到有效值。
10811
10547
  :rtype: int
10812
10548
  """
10813
10549
  return self._CorpId
@@ -10819,7 +10555,6 @@ class Quota(AbstractModel):
10819
10555
  @property
10820
10556
  def Services(self):
10821
10557
  """开通服务
10822
- 注意:此字段可能返回 null,表示取不到有效值。
10823
10558
  :rtype: list of str
10824
10559
  """
10825
10560
  return self._Services
@@ -10831,7 +10566,6 @@ class Quota(AbstractModel):
10831
10566
  @property
10832
10567
  def FactoryQuota(self):
10833
10568
  """商户配额
10834
- 注意:此字段可能返回 null,表示取不到有效值。
10835
10569
  :rtype: int
10836
10570
  """
10837
10571
  return self._FactoryQuota
@@ -10843,7 +10577,6 @@ class Quota(AbstractModel):
10843
10577
  @property
10844
10578
  def ItemQuota(self):
10845
10579
  """商品配额
10846
- 注意:此字段可能返回 null,表示取不到有效值。
10847
10580
  :rtype: int
10848
10581
  """
10849
10582
  return self._ItemQuota
@@ -10855,7 +10588,6 @@ class Quota(AbstractModel):
10855
10588
  @property
10856
10589
  def TrackQuota(self):
10857
10590
  """溯源码配额
10858
- 注意:此字段可能返回 null,表示取不到有效值。
10859
10591
  :rtype: int
10860
10592
  """
10861
10593
  return self._TrackQuota
@@ -10867,7 +10599,6 @@ class Quota(AbstractModel):
10867
10599
  @property
10868
10600
  def SaleQuota(self):
10869
10601
  """销售码配额
10870
- 注意:此字段可能返回 null,表示取不到有效值。
10871
10602
  :rtype: int
10872
10603
  """
10873
10604
  return self._SaleQuota
@@ -10879,7 +10610,6 @@ class Quota(AbstractModel):
10879
10610
  @property
10880
10611
  def ChainQuota(self):
10881
10612
  """上链配额
10882
- 注意:此字段可能返回 null,表示取不到有效值。
10883
10613
  :rtype: int
10884
10614
  """
10885
10615
  return self._ChainQuota
@@ -10891,7 +10621,6 @@ class Quota(AbstractModel):
10891
10621
  @property
10892
10622
  def RiskQuota(self):
10893
10623
  """风控配额
10894
- 注意:此字段可能返回 null,表示取不到有效值。
10895
10624
  :rtype: int
10896
10625
  """
10897
10626
  return self._RiskQuota
@@ -10903,7 +10632,6 @@ class Quota(AbstractModel):
10903
10632
  @property
10904
10633
  def AigcTextQuota(self):
10905
10634
  """AI文字数量
10906
- 注意:此字段可能返回 null,表示取不到有效值。
10907
10635
  :rtype: int
10908
10636
  """
10909
10637
  return self._AigcTextQuota
@@ -10915,7 +10643,6 @@ class Quota(AbstractModel):
10915
10643
  @property
10916
10644
  def AigcImageQuota(self):
10917
10645
  """AI图片数量
10918
- 注意:此字段可能返回 null,表示取不到有效值。
10919
10646
  :rtype: int
10920
10647
  """
10921
10648
  return self._AigcImageQuota
@@ -10927,7 +10654,6 @@ class Quota(AbstractModel):
10927
10654
  @property
10928
10655
  def TrackType(self):
10929
10656
  """溯源类型
10930
- 注意:此字段可能返回 null,表示取不到有效值。
10931
10657
  :rtype: int
10932
10658
  """
10933
10659
  return self._TrackType
@@ -10939,7 +10665,6 @@ class Quota(AbstractModel):
10939
10665
  @property
10940
10666
  def Version(self):
10941
10667
  """开通版本 lite:轻量版, basic:基础版, standard:标准版
10942
- 注意:此字段可能返回 null,表示取不到有效值。
10943
10668
  :rtype: str
10944
10669
  """
10945
10670
  return self._Version
@@ -10951,7 +10676,6 @@ class Quota(AbstractModel):
10951
10676
  @property
10952
10677
  def ProductCertify(self):
10953
10678
  """是否开启企业认证
10954
- 注意:此字段可能返回 null,表示取不到有效值。
10955
10679
  :rtype: int
10956
10680
  """
10957
10681
  return self._ProductCertify
@@ -10998,7 +10722,6 @@ class RawScanLog(AbstractModel):
10998
10722
  :param _LogId: 日志ID
10999
10723
  :type LogId: int
11000
10724
  :param _Openid: 微信小程序openid
11001
- 注意:此字段可能返回 null,表示取不到有效值。
11002
10725
  :type Openid: str
11003
10726
  :param _CreateTime: 扫码时间
11004
10727
  :type CreateTime: str
@@ -11007,22 +10730,16 @@ class RawScanLog(AbstractModel):
11007
10730
  :param _CorpId: 企业ID
11008
10731
  :type CorpId: int
11009
10732
  :param _MerchantId: 商户ID
11010
- 注意:此字段可能返回 null,表示取不到有效值。
11011
10733
  :type MerchantId: str
11012
10734
  :param _ProductId: 商品ID
11013
- 注意:此字段可能返回 null,表示取不到有效值。
11014
10735
  :type ProductId: str
11015
10736
  :param _BatchId: 批次ID
11016
- 注意:此字段可能返回 null,表示取不到有效值。
11017
10737
  :type BatchId: str
11018
10738
  :param _Province: 省份
11019
- 注意:此字段可能返回 null,表示取不到有效值。
11020
10739
  :type Province: str
11021
10740
  :param _City: 地市
11022
- 注意:此字段可能返回 null,表示取不到有效值。
11023
10741
  :type City: str
11024
10742
  :param _District: 区/县
11025
- 注意:此字段可能返回 null,表示取不到有效值。
11026
10743
  :type District: str
11027
10744
  """
11028
10745
  self._LogId = None
@@ -11051,7 +10768,6 @@ class RawScanLog(AbstractModel):
11051
10768
  @property
11052
10769
  def Openid(self):
11053
10770
  """微信小程序openid
11054
- 注意:此字段可能返回 null,表示取不到有效值。
11055
10771
  :rtype: str
11056
10772
  """
11057
10773
  return self._Openid
@@ -11096,7 +10812,6 @@ class RawScanLog(AbstractModel):
11096
10812
  @property
11097
10813
  def MerchantId(self):
11098
10814
  """商户ID
11099
- 注意:此字段可能返回 null,表示取不到有效值。
11100
10815
  :rtype: str
11101
10816
  """
11102
10817
  return self._MerchantId
@@ -11108,7 +10823,6 @@ class RawScanLog(AbstractModel):
11108
10823
  @property
11109
10824
  def ProductId(self):
11110
10825
  """商品ID
11111
- 注意:此字段可能返回 null,表示取不到有效值。
11112
10826
  :rtype: str
11113
10827
  """
11114
10828
  return self._ProductId
@@ -11120,7 +10834,6 @@ class RawScanLog(AbstractModel):
11120
10834
  @property
11121
10835
  def BatchId(self):
11122
10836
  """批次ID
11123
- 注意:此字段可能返回 null,表示取不到有效值。
11124
10837
  :rtype: str
11125
10838
  """
11126
10839
  return self._BatchId
@@ -11132,7 +10845,6 @@ class RawScanLog(AbstractModel):
11132
10845
  @property
11133
10846
  def Province(self):
11134
10847
  """省份
11135
- 注意:此字段可能返回 null,表示取不到有效值。
11136
10848
  :rtype: str
11137
10849
  """
11138
10850
  return self._Province
@@ -11144,7 +10856,6 @@ class RawScanLog(AbstractModel):
11144
10856
  @property
11145
10857
  def City(self):
11146
10858
  """地市
11147
- 注意:此字段可能返回 null,表示取不到有效值。
11148
10859
  :rtype: str
11149
10860
  """
11150
10861
  return self._City
@@ -11156,7 +10867,6 @@ class RawScanLog(AbstractModel):
11156
10867
  @property
11157
10868
  def District(self):
11158
10869
  """区/县
11159
- 注意:此字段可能返回 null,表示取不到有效值。
11160
10870
  :rtype: str
11161
10871
  """
11162
10872
  return self._District
@@ -11281,60 +10991,42 @@ class ScanLog(AbstractModel):
11281
10991
  :param _LogId: 行ID
11282
10992
  :type LogId: int
11283
10993
  :param _Openid: 微信openid
11284
- 注意:此字段可能返回 null,表示取不到有效值。
11285
10994
  :type Openid: str
11286
10995
  :param _Nickname: 微信昵称
11287
- 注意:此字段可能返回 null,表示取不到有效值。
11288
10996
  :type Nickname: str
11289
10997
  :param _CreateTime: 创建时间
11290
- 注意:此字段可能返回 null,表示取不到有效值。
11291
10998
  :type CreateTime: str
11292
10999
  :param _Code: 码
11293
- 注意:此字段可能返回 null,表示取不到有效值。
11294
11000
  :type Code: str
11295
11001
  :param _CorpId: 企业ID
11296
- 注意:此字段可能返回 null,表示取不到有效值。
11297
11002
  :type CorpId: int
11298
11003
  :param _MerchantId: 商户ID
11299
- 注意:此字段可能返回 null,表示取不到有效值。
11300
11004
  :type MerchantId: str
11301
11005
  :param _ProductId: 商品ID
11302
- 注意:此字段可能返回 null,表示取不到有效值。
11303
11006
  :type ProductId: str
11304
11007
  :param _Ip: ip地址
11305
- 注意:此字段可能返回 null,表示取不到有效值。
11306
11008
  :type Ip: str
11307
11009
  :param _Country: 国家
11308
- 注意:此字段可能返回 null,表示取不到有效值。
11309
11010
  :type Country: str
11310
11011
  :param _Province: 省份
11311
- 注意:此字段可能返回 null,表示取不到有效值。
11312
11012
  :type Province: str
11313
11013
  :param _City: 城市
11314
- 注意:此字段可能返回 null,表示取不到有效值。
11315
11014
  :type City: str
11316
11015
  :param _District: 县/区
11317
- 注意:此字段可能返回 null,表示取不到有效值。
11318
11016
  :type District: str
11319
11017
  :param _Unionid: 微信 unionid
11320
- 注意:此字段可能返回 null,表示取不到有效值。
11321
11018
  :type Unionid: str
11322
11019
  :param _First: 首次扫码 0:否, 1:是
11323
- 注意:此字段可能返回 null,表示取不到有效值。
11324
11020
  :type First: int
11325
11021
  :param _BatchId: 批次ID
11326
- 注意:此字段可能返回 null,表示取不到有效值。
11327
11022
  :type BatchId: str
11328
11023
  :param _Type: 扫码类型 0:无效扫码 1: 小程序扫码 2: 商家扫码
11329
11024
  :type Type: int
11330
11025
  :param _MerchantName: 商户名称
11331
- 注意:此字段可能返回 null,表示取不到有效值。
11332
11026
  :type MerchantName: str
11333
11027
  :param _ProductName: 产品名称
11334
- 注意:此字段可能返回 null,表示取不到有效值。
11335
11028
  :type ProductName: str
11336
11029
  :param _ProductLogo: 产品Logo
11337
- 注意:此字段可能返回 null,表示取不到有效值。
11338
11030
  :type ProductLogo: str
11339
11031
  :param _Status: 风险状态
11340
11032
  0: 未知, 1:通过, 2:失败/风险, 3:存疑
@@ -11380,7 +11072,6 @@ class ScanLog(AbstractModel):
11380
11072
  @property
11381
11073
  def Openid(self):
11382
11074
  """微信openid
11383
- 注意:此字段可能返回 null,表示取不到有效值。
11384
11075
  :rtype: str
11385
11076
  """
11386
11077
  return self._Openid
@@ -11392,7 +11083,6 @@ class ScanLog(AbstractModel):
11392
11083
  @property
11393
11084
  def Nickname(self):
11394
11085
  """微信昵称
11395
- 注意:此字段可能返回 null,表示取不到有效值。
11396
11086
  :rtype: str
11397
11087
  """
11398
11088
  return self._Nickname
@@ -11404,7 +11094,6 @@ class ScanLog(AbstractModel):
11404
11094
  @property
11405
11095
  def CreateTime(self):
11406
11096
  """创建时间
11407
- 注意:此字段可能返回 null,表示取不到有效值。
11408
11097
  :rtype: str
11409
11098
  """
11410
11099
  return self._CreateTime
@@ -11416,7 +11105,6 @@ class ScanLog(AbstractModel):
11416
11105
  @property
11417
11106
  def Code(self):
11418
11107
  """码
11419
- 注意:此字段可能返回 null,表示取不到有效值。
11420
11108
  :rtype: str
11421
11109
  """
11422
11110
  return self._Code
@@ -11428,7 +11116,6 @@ class ScanLog(AbstractModel):
11428
11116
  @property
11429
11117
  def CorpId(self):
11430
11118
  """企业ID
11431
- 注意:此字段可能返回 null,表示取不到有效值。
11432
11119
  :rtype: int
11433
11120
  """
11434
11121
  return self._CorpId
@@ -11440,7 +11127,6 @@ class ScanLog(AbstractModel):
11440
11127
  @property
11441
11128
  def MerchantId(self):
11442
11129
  """商户ID
11443
- 注意:此字段可能返回 null,表示取不到有效值。
11444
11130
  :rtype: str
11445
11131
  """
11446
11132
  return self._MerchantId
@@ -11452,7 +11138,6 @@ class ScanLog(AbstractModel):
11452
11138
  @property
11453
11139
  def ProductId(self):
11454
11140
  """商品ID
11455
- 注意:此字段可能返回 null,表示取不到有效值。
11456
11141
  :rtype: str
11457
11142
  """
11458
11143
  return self._ProductId
@@ -11464,7 +11149,6 @@ class ScanLog(AbstractModel):
11464
11149
  @property
11465
11150
  def Ip(self):
11466
11151
  """ip地址
11467
- 注意:此字段可能返回 null,表示取不到有效值。
11468
11152
  :rtype: str
11469
11153
  """
11470
11154
  return self._Ip
@@ -11476,7 +11160,6 @@ class ScanLog(AbstractModel):
11476
11160
  @property
11477
11161
  def Country(self):
11478
11162
  """国家
11479
- 注意:此字段可能返回 null,表示取不到有效值。
11480
11163
  :rtype: str
11481
11164
  """
11482
11165
  return self._Country
@@ -11488,7 +11171,6 @@ class ScanLog(AbstractModel):
11488
11171
  @property
11489
11172
  def Province(self):
11490
11173
  """省份
11491
- 注意:此字段可能返回 null,表示取不到有效值。
11492
11174
  :rtype: str
11493
11175
  """
11494
11176
  return self._Province
@@ -11500,7 +11182,6 @@ class ScanLog(AbstractModel):
11500
11182
  @property
11501
11183
  def City(self):
11502
11184
  """城市
11503
- 注意:此字段可能返回 null,表示取不到有效值。
11504
11185
  :rtype: str
11505
11186
  """
11506
11187
  return self._City
@@ -11512,7 +11193,6 @@ class ScanLog(AbstractModel):
11512
11193
  @property
11513
11194
  def District(self):
11514
11195
  """县/区
11515
- 注意:此字段可能返回 null,表示取不到有效值。
11516
11196
  :rtype: str
11517
11197
  """
11518
11198
  return self._District
@@ -11524,7 +11204,6 @@ class ScanLog(AbstractModel):
11524
11204
  @property
11525
11205
  def Unionid(self):
11526
11206
  """微信 unionid
11527
- 注意:此字段可能返回 null,表示取不到有效值。
11528
11207
  :rtype: str
11529
11208
  """
11530
11209
  return self._Unionid
@@ -11536,7 +11215,6 @@ class ScanLog(AbstractModel):
11536
11215
  @property
11537
11216
  def First(self):
11538
11217
  """首次扫码 0:否, 1:是
11539
- 注意:此字段可能返回 null,表示取不到有效值。
11540
11218
  :rtype: int
11541
11219
  """
11542
11220
  return self._First
@@ -11548,7 +11226,6 @@ class ScanLog(AbstractModel):
11548
11226
  @property
11549
11227
  def BatchId(self):
11550
11228
  """批次ID
11551
- 注意:此字段可能返回 null,表示取不到有效值。
11552
11229
  :rtype: str
11553
11230
  """
11554
11231
  return self._BatchId
@@ -11571,7 +11248,6 @@ class ScanLog(AbstractModel):
11571
11248
  @property
11572
11249
  def MerchantName(self):
11573
11250
  """商户名称
11574
- 注意:此字段可能返回 null,表示取不到有效值。
11575
11251
  :rtype: str
11576
11252
  """
11577
11253
  return self._MerchantName
@@ -11583,7 +11259,6 @@ class ScanLog(AbstractModel):
11583
11259
  @property
11584
11260
  def ProductName(self):
11585
11261
  """产品名称
11586
- 注意:此字段可能返回 null,表示取不到有效值。
11587
11262
  :rtype: str
11588
11263
  """
11589
11264
  return self._ProductName
@@ -11595,7 +11270,6 @@ class ScanLog(AbstractModel):
11595
11270
  @property
11596
11271
  def ProductLogo(self):
11597
11272
  """产品Logo
11598
- 注意:此字段可能返回 null,表示取不到有效值。
11599
11273
  :rtype: str
11600
11274
  """
11601
11275
  return self._ProductLogo
@@ -11882,13 +11556,10 @@ class TraceCode(AbstractModel):
11882
11556
  :param _Level: 码层级 0: 最小级, 1: 一级, 2: 二级
11883
11557
  :type Level: int
11884
11558
  :param _PackSpec: 码层级详情
11885
- 注意:此字段可能返回 null,表示取不到有效值。
11886
11559
  :type PackSpec: list of PackSpec
11887
11560
  :param _SceneCode: 场景码
11888
- 注意:此字段可能返回 null,表示取不到有效值。
11889
11561
  :type SceneCode: int
11890
11562
  :param _SerialCode: 流水码
11891
- 注意:此字段可能返回 null,表示取不到有效值。
11892
11563
  :type SerialCode: int
11893
11564
  """
11894
11565
  self._Code = None
@@ -12054,7 +11725,6 @@ class TraceCode(AbstractModel):
12054
11725
  @property
12055
11726
  def PackSpec(self):
12056
11727
  """码层级详情
12057
- 注意:此字段可能返回 null,表示取不到有效值。
12058
11728
  :rtype: list of PackSpec
12059
11729
  """
12060
11730
  return self._PackSpec
@@ -12066,7 +11736,6 @@ class TraceCode(AbstractModel):
12066
11736
  @property
12067
11737
  def SceneCode(self):
12068
11738
  """场景码
12069
- 注意:此字段可能返回 null,表示取不到有效值。
12070
11739
  :rtype: int
12071
11740
  """
12072
11741
  return self._SceneCode
@@ -12078,7 +11747,6 @@ class TraceCode(AbstractModel):
12078
11747
  @property
12079
11748
  def SerialCode(self):
12080
11749
  """流水码
12081
- 注意:此字段可能返回 null,表示取不到有效值。
12082
11750
  :rtype: int
12083
11751
  """
12084
11752
  return self._SerialCode
@@ -12134,7 +11802,6 @@ class TraceData(AbstractModel):
12134
11802
  :param _Type: 码类型 0: 批次, 1: 码, 2: 生产任务
12135
11803
  :type Type: int
12136
11804
  :param _Code: 码值,跟码类型一一对应
12137
- 注意:此字段可能返回 null,表示取不到有效值。
12138
11805
  :type Code: str
12139
11806
  :param _Rank: 排序,在Phase相同情况下,值越小排名靠前
12140
11807
  :type Rank: int
@@ -12143,22 +11810,16 @@ class TraceData(AbstractModel):
12143
11810
  :param _PhaseName: 溯源环节名称
12144
11811
  :type PhaseName: str
12145
11812
  :param _TraceTime: 溯源时间
12146
- 注意:此字段可能返回 null,表示取不到有效值。
12147
11813
  :type TraceTime: str
12148
11814
  :param _CreateTime: 创建时间
12149
- 注意:此字段可能返回 null,表示取不到有效值。
12150
11815
  :type CreateTime: str
12151
11816
  :param _ChainStatus: 上链状态 0: 未上链 1: 上链中 2: 已上链 -1: 异常
12152
- 注意:此字段可能返回 null,表示取不到有效值。
12153
11817
  :type ChainStatus: int
12154
11818
  :param _ChainTime: 上链时间
12155
- 注意:此字段可能返回 null,表示取不到有效值。
12156
11819
  :type ChainTime: str
12157
11820
  :param _ChainData: 上链数据
12158
- 注意:此字段可能返回 null,表示取不到有效值。
12159
11821
  :type ChainData: :class:`tencentcloud.trp.v20210515.models.ChainData`
12160
11822
  :param _PhaseData: 溯源阶段配置
12161
- 注意:此字段可能返回 null,表示取不到有效值。
12162
11823
  :type PhaseData: :class:`tencentcloud.trp.v20210515.models.PhaseData`
12163
11824
  :param _Status: 溯源阶段状态 0: 无效, 1: 有效
12164
11825
  :type Status: int
@@ -12217,7 +11878,6 @@ class TraceData(AbstractModel):
12217
11878
  @property
12218
11879
  def Code(self):
12219
11880
  """码值,跟码类型一一对应
12220
- 注意:此字段可能返回 null,表示取不到有效值。
12221
11881
  :rtype: str
12222
11882
  """
12223
11883
  return self._Code
@@ -12262,7 +11922,6 @@ class TraceData(AbstractModel):
12262
11922
  @property
12263
11923
  def TraceTime(self):
12264
11924
  """溯源时间
12265
- 注意:此字段可能返回 null,表示取不到有效值。
12266
11925
  :rtype: str
12267
11926
  """
12268
11927
  return self._TraceTime
@@ -12274,7 +11933,6 @@ class TraceData(AbstractModel):
12274
11933
  @property
12275
11934
  def CreateTime(self):
12276
11935
  """创建时间
12277
- 注意:此字段可能返回 null,表示取不到有效值。
12278
11936
  :rtype: str
12279
11937
  """
12280
11938
  return self._CreateTime
@@ -12286,7 +11944,6 @@ class TraceData(AbstractModel):
12286
11944
  @property
12287
11945
  def ChainStatus(self):
12288
11946
  """上链状态 0: 未上链 1: 上链中 2: 已上链 -1: 异常
12289
- 注意:此字段可能返回 null,表示取不到有效值。
12290
11947
  :rtype: int
12291
11948
  """
12292
11949
  return self._ChainStatus
@@ -12298,7 +11955,6 @@ class TraceData(AbstractModel):
12298
11955
  @property
12299
11956
  def ChainTime(self):
12300
11957
  """上链时间
12301
- 注意:此字段可能返回 null,表示取不到有效值。
12302
11958
  :rtype: str
12303
11959
  """
12304
11960
  return self._ChainTime
@@ -12310,7 +11966,6 @@ class TraceData(AbstractModel):
12310
11966
  @property
12311
11967
  def ChainData(self):
12312
11968
  """上链数据
12313
- 注意:此字段可能返回 null,表示取不到有效值。
12314
11969
  :rtype: :class:`tencentcloud.trp.v20210515.models.ChainData`
12315
11970
  """
12316
11971
  return self._ChainData
@@ -12322,7 +11977,6 @@ class TraceData(AbstractModel):
12322
11977
  @property
12323
11978
  def PhaseData(self):
12324
11979
  """溯源阶段配置
12325
- 注意:此字段可能返回 null,表示取不到有效值。
12326
11980
  :rtype: :class:`tencentcloud.trp.v20210515.models.PhaseData`
12327
11981
  """
12328
11982
  return self._PhaseData
@@ -12596,28 +12250,21 @@ class UsageQuota(AbstractModel):
12596
12250
  def __init__(self):
12597
12251
  r"""
12598
12252
  :param _CorpId: 企业ID
12599
- 注意:此字段可能返回 null,表示取不到有效值。
12600
12253
  :type CorpId: int
12601
12254
  :param _FactoryCnt: 商户配额
12602
- 注意:此字段可能返回 null,表示取不到有效值。
12603
12255
  :type FactoryCnt: int
12604
12256
  :param _ItemCnt: 商品数量
12605
- 注意:此字段可能返回 null,表示取不到有效值。
12606
12257
  :type ItemCnt: int
12607
12258
  :param _TrackCnt: 溯源码量
12608
- 注意:此字段可能返回 null,表示取不到有效值。
12609
12259
  :type TrackCnt: int
12610
12260
  :param _SaleCnt: 营销码额度
12611
- 注意:此字段可能返回 null,表示取不到有效值。
12612
12261
  :type SaleCnt: int
12613
12262
  :param _ChainCnt: 区块链上链次数
12614
- 注意:此字段可能返回 null,表示取不到有效值。
12615
12263
  :type ChainCnt: int
12616
12264
  :param _RiskCnt: 风险检测次数
12617
12265
  注意:此字段可能返回 null,表示取不到有效值。
12618
12266
  :type RiskCnt: int
12619
12267
  :param _UpdateTime: 时间
12620
- 注意:此字段可能返回 null,表示取不到有效值。
12621
12268
  :type UpdateTime: str
12622
12269
  """
12623
12270
  self._CorpId = None
@@ -12632,7 +12279,6 @@ class UsageQuota(AbstractModel):
12632
12279
  @property
12633
12280
  def CorpId(self):
12634
12281
  """企业ID
12635
- 注意:此字段可能返回 null,表示取不到有效值。
12636
12282
  :rtype: int
12637
12283
  """
12638
12284
  return self._CorpId
@@ -12644,7 +12290,6 @@ class UsageQuota(AbstractModel):
12644
12290
  @property
12645
12291
  def FactoryCnt(self):
12646
12292
  """商户配额
12647
- 注意:此字段可能返回 null,表示取不到有效值。
12648
12293
  :rtype: int
12649
12294
  """
12650
12295
  return self._FactoryCnt
@@ -12656,7 +12301,6 @@ class UsageQuota(AbstractModel):
12656
12301
  @property
12657
12302
  def ItemCnt(self):
12658
12303
  """商品数量
12659
- 注意:此字段可能返回 null,表示取不到有效值。
12660
12304
  :rtype: int
12661
12305
  """
12662
12306
  return self._ItemCnt
@@ -12668,7 +12312,6 @@ class UsageQuota(AbstractModel):
12668
12312
  @property
12669
12313
  def TrackCnt(self):
12670
12314
  """溯源码量
12671
- 注意:此字段可能返回 null,表示取不到有效值。
12672
12315
  :rtype: int
12673
12316
  """
12674
12317
  return self._TrackCnt
@@ -12680,7 +12323,6 @@ class UsageQuota(AbstractModel):
12680
12323
  @property
12681
12324
  def SaleCnt(self):
12682
12325
  """营销码额度
12683
- 注意:此字段可能返回 null,表示取不到有效值。
12684
12326
  :rtype: int
12685
12327
  """
12686
12328
  return self._SaleCnt
@@ -12692,7 +12334,6 @@ class UsageQuota(AbstractModel):
12692
12334
  @property
12693
12335
  def ChainCnt(self):
12694
12336
  """区块链上链次数
12695
- 注意:此字段可能返回 null,表示取不到有效值。
12696
12337
  :rtype: int
12697
12338
  """
12698
12339
  return self._ChainCnt
@@ -12720,7 +12361,6 @@ class UsageQuota(AbstractModel):
12720
12361
  @property
12721
12362
  def UpdateTime(self):
12722
12363
  """时间
12723
- 注意:此字段可能返回 null,表示取不到有效值。
12724
12364
  :rtype: str
12725
12365
  """
12726
12366
  return self._UpdateTime