tencentcloud-sdk-python 3.0.1321__py2.py3-none-any.whl → 3.0.1323__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/aiart/v20221229/aiart_client.py +54 -0
  3. tencentcloud/aiart/v20221229/models.py +523 -0
  4. tencentcloud/billing/v20180709/billing_client.py +0 -75
  5. tencentcloud/billing/v20180709/models.py +2 -833
  6. tencentcloud/ckafka/v20190819/models.py +15 -0
  7. tencentcloud/cwp/v20180228/cwp_client.py +0 -25
  8. tencentcloud/cwp/v20180228/models.py +0 -274
  9. tencentcloud/dcdb/v20180411/dcdb_client.py +46 -0
  10. tencentcloud/dcdb/v20180411/models.py +379 -0
  11. tencentcloud/dlc/v20210125/models.py +205 -10
  12. tencentcloud/ess/v20201111/models.py +2 -2
  13. tencentcloud/essbasic/v20210526/models.py +2 -2
  14. tencentcloud/facefusion/v20220927/facefusion_client.py +0 -1
  15. tencentcloud/faceid/v20180301/models.py +8 -6
  16. tencentcloud/gme/v20180711/models.py +0 -12
  17. tencentcloud/keewidb/v20220308/keewidb_client.py +1 -0
  18. tencentcloud/lcic/v20220817/models.py +0 -160
  19. tencentcloud/lighthouse/v20200324/models.py +4 -16
  20. tencentcloud/lke/v20231130/models.py +15 -0
  21. tencentcloud/lkeap/v20240522/lkeap_client.py +5 -5
  22. tencentcloud/lkeap/v20240522/models.py +4 -6
  23. tencentcloud/mna/v20210119/mna_client.py +46 -0
  24. tencentcloud/mna/v20210119/models.py +424 -0
  25. tencentcloud/monitor/v20230616/__init__.py +0 -0
  26. tencentcloud/monitor/v20230616/errorcodes.py +30 -0
  27. tencentcloud/monitor/v20230616/models.py +494 -0
  28. tencentcloud/monitor/v20230616/monitor_client.py +55 -0
  29. tencentcloud/mqtt/v20240516/errorcodes.py +12 -0
  30. tencentcloud/mqtt/v20240516/models.py +2179 -651
  31. tencentcloud/mqtt/v20240516/mqtt_client.py +208 -0
  32. tencentcloud/ocr/v20181119/models.py +107 -2
  33. tencentcloud/ssl/v20191205/models.py +2 -2
  34. tencentcloud/taf/v20200210/errorcodes.py +0 -156
  35. tencentcloud/taf/v20200210/models.py +80 -1291
  36. tencentcloud/taf/v20200210/taf_client.py +0 -69
  37. tencentcloud/tcb/v20180608/errorcodes.py +3 -0
  38. tencentcloud/teo/v20220901/models.py +6 -0
  39. tencentcloud/tione/v20211111/models.py +19 -0
  40. tencentcloud/trabbit/v20230418/models.py +15 -304
  41. tencentcloud/trtc/v20190722/models.py +0 -6
  42. tencentcloud/vclm/v20240523/errorcodes.py +0 -72
  43. tencentcloud/vclm/v20240523/models.py +1 -854
  44. tencentcloud/vclm/v20240523/vclm_client.py +0 -104
  45. tencentcloud/wedata/v20210820/models.py +298 -0
  46. tencentcloud/wedata/v20210820/wedata_client.py +23 -0
  47. {tencentcloud_sdk_python-3.0.1321.dist-info → tencentcloud_sdk_python-3.0.1323.dist-info}/METADATA +1 -1
  48. {tencentcloud_sdk_python-3.0.1321.dist-info → tencentcloud_sdk_python-3.0.1323.dist-info}/RECORD +51 -47
  49. {tencentcloud_sdk_python-3.0.1321.dist-info → tencentcloud_sdk_python-3.0.1323.dist-info}/LICENSE +0 -0
  50. {tencentcloud_sdk_python-3.0.1321.dist-info → tencentcloud_sdk_python-3.0.1323.dist-info}/WHEEL +0 -0
  51. {tencentcloud_sdk_python-3.0.1321.dist-info → tencentcloud_sdk_python-3.0.1323.dist-info}/top_level.txt +0 -0
@@ -1305,10 +1305,8 @@ class BatchUserInfo(AbstractModel):
1305
1305
 
1306
1306
  :type SdkAppId: int
1307
1307
  :param _UserId: 用户ID。
1308
- 注意:此字段可能返回 null,表示取不到有效值。
1309
1308
  :type UserId: str
1310
1309
  :param _OriginId: 用户在客户系统的Id。 若用户注册时该字段为空,则默认为 UserId 值一致。
1311
- 注意:此字段可能返回 null,表示取不到有效值。
1312
1310
  :type OriginId: str
1313
1311
  """
1314
1312
  self._SdkAppId = None
@@ -1330,7 +1328,6 @@ class BatchUserInfo(AbstractModel):
1330
1328
  @property
1331
1329
  def UserId(self):
1332
1330
  """用户ID。
1333
- 注意:此字段可能返回 null,表示取不到有效值。
1334
1331
  :rtype: str
1335
1332
  """
1336
1333
  return self._UserId
@@ -1342,7 +1339,6 @@ class BatchUserInfo(AbstractModel):
1342
1339
  @property
1343
1340
  def OriginId(self):
1344
1341
  """用户在客户系统的Id。 若用户注册时该字段为空,则默认为 UserId 值一致。
1345
- 注意:此字段可能返回 null,表示取不到有效值。
1346
1342
  :rtype: str
1347
1343
  """
1348
1344
  return self._OriginId
@@ -1561,19 +1557,14 @@ class ClassScoreItem(AbstractModel):
1561
1557
  def __init__(self):
1562
1558
  r"""
1563
1559
  :param _RoomId: 课堂iD
1564
- 注意:此字段可能返回 null,表示取不到有效值。
1565
1560
  :type RoomId: int
1566
1561
  :param _UserId: 用户ID
1567
- 注意:此字段可能返回 null,表示取不到有效值。
1568
1562
  :type UserId: str
1569
1563
  :param _CreateTime: 评分时间
1570
- 注意:此字段可能返回 null,表示取不到有效值。
1571
1564
  :type CreateTime: int
1572
1565
  :param _Score: 课堂评分
1573
- 注意:此字段可能返回 null,表示取不到有效值。
1574
1566
  :type Score: int
1575
1567
  :param _ScoreMsg: 课堂评价
1576
- 注意:此字段可能返回 null,表示取不到有效值。
1577
1568
  :type ScoreMsg: str
1578
1569
  """
1579
1570
  self._RoomId = None
@@ -1585,7 +1576,6 @@ class ClassScoreItem(AbstractModel):
1585
1576
  @property
1586
1577
  def RoomId(self):
1587
1578
  """课堂iD
1588
- 注意:此字段可能返回 null,表示取不到有效值。
1589
1579
  :rtype: int
1590
1580
  """
1591
1581
  return self._RoomId
@@ -1597,7 +1587,6 @@ class ClassScoreItem(AbstractModel):
1597
1587
  @property
1598
1588
  def UserId(self):
1599
1589
  """用户ID
1600
- 注意:此字段可能返回 null,表示取不到有效值。
1601
1590
  :rtype: str
1602
1591
  """
1603
1592
  return self._UserId
@@ -1609,7 +1598,6 @@ class ClassScoreItem(AbstractModel):
1609
1598
  @property
1610
1599
  def CreateTime(self):
1611
1600
  """评分时间
1612
- 注意:此字段可能返回 null,表示取不到有效值。
1613
1601
  :rtype: int
1614
1602
  """
1615
1603
  return self._CreateTime
@@ -1621,7 +1609,6 @@ class ClassScoreItem(AbstractModel):
1621
1609
  @property
1622
1610
  def Score(self):
1623
1611
  """课堂评分
1624
- 注意:此字段可能返回 null,表示取不到有效值。
1625
1612
  :rtype: int
1626
1613
  """
1627
1614
  return self._Score
@@ -1633,7 +1620,6 @@ class ClassScoreItem(AbstractModel):
1633
1620
  @property
1634
1621
  def ScoreMsg(self):
1635
1622
  """课堂评价
1636
- 注意:此字段可能返回 null,表示取不到有效值。
1637
1623
  :rtype: str
1638
1624
  """
1639
1625
  return self._ScoreMsg
@@ -2784,13 +2770,10 @@ class CustomMsgContent(AbstractModel):
2784
2770
  def __init__(self):
2785
2771
  r"""
2786
2772
  :param _Data: 自定义消息数据。
2787
- 注意:此字段可能返回 null,表示取不到有效值。
2788
2773
  :type Data: str
2789
2774
  :param _Desc: 自定义消息描述信息。
2790
- 注意:此字段可能返回 null,表示取不到有效值。
2791
2775
  :type Desc: str
2792
2776
  :param _Ext: 扩展字段。
2793
- 注意:此字段可能返回 null,表示取不到有效值。
2794
2777
  :type Ext: str
2795
2778
  """
2796
2779
  self._Data = None
@@ -2800,7 +2783,6 @@ class CustomMsgContent(AbstractModel):
2800
2783
  @property
2801
2784
  def Data(self):
2802
2785
  """自定义消息数据。
2803
- 注意:此字段可能返回 null,表示取不到有效值。
2804
2786
  :rtype: str
2805
2787
  """
2806
2788
  return self._Data
@@ -2812,7 +2794,6 @@ class CustomMsgContent(AbstractModel):
2812
2794
  @property
2813
2795
  def Desc(self):
2814
2796
  """自定义消息描述信息。
2815
- 注意:此字段可能返回 null,表示取不到有效值。
2816
2797
  :rtype: str
2817
2798
  """
2818
2799
  return self._Desc
@@ -2824,7 +2805,6 @@ class CustomMsgContent(AbstractModel):
2824
2805
  @property
2825
2806
  def Ext(self):
2826
2807
  """扩展字段。
2827
- 注意:此字段可能返回 null,表示取不到有效值。
2828
2808
  :rtype: str
2829
2809
  """
2830
2810
  return self._Ext
@@ -7460,67 +7440,46 @@ class DocumentInfo(AbstractModel):
7460
7440
  def __init__(self):
7461
7441
  r"""
7462
7442
  :param _DocumentId: 文档Id
7463
- 注意:此字段可能返回 null,表示取不到有效值。
7464
7443
  :type DocumentId: str
7465
7444
  :param _DocumentUrl: 文档原址url
7466
- 注意:此字段可能返回 null,表示取不到有效值。
7467
7445
  :type DocumentUrl: str
7468
7446
  :param _DocumentName: 文档名称
7469
- 注意:此字段可能返回 null,表示取不到有效值。
7470
7447
  :type DocumentName: str
7471
7448
  :param _Owner: 文档所有者UserId
7472
- 注意:此字段可能返回 null,表示取不到有效值。
7473
7449
  :type Owner: str
7474
7450
  :param _SdkAppId: 应用Id
7475
- 注意:此字段可能返回 null,表示取不到有效值。
7476
7451
  :type SdkAppId: int
7477
7452
  :param _Permission: 文档权限,0:私有课件 1:公共课件
7478
- 注意:此字段可能返回 null,表示取不到有效值。
7479
7453
  :type Permission: int
7480
7454
  :param _TranscodeResult: 转码结果,无需转码为空,转码成功为结果url,转码失败为错误码
7481
- 注意:此字段可能返回 null,表示取不到有效值。
7482
7455
  :type TranscodeResult: str
7483
7456
  :param _TranscodeType: 转码类型
7484
- 注意:此字段可能返回 null,表示取不到有效值。
7485
7457
  :type TranscodeType: int
7486
7458
  :param _TranscodeProgress: 转码进度, 0 - 100 表示(0% - 100%)
7487
- 注意:此字段可能返回 null,表示取不到有效值。
7488
7459
  :type TranscodeProgress: int
7489
7460
  :param _TranscodeState: 转码状态,0为无需转码,1为正在转码,2为转码失败,3为转码成功
7490
- 注意:此字段可能返回 null,表示取不到有效值。
7491
7461
  :type TranscodeState: int
7492
7462
  :param _TranscodeInfo: 转码失败后的错误信息
7493
- 注意:此字段可能返回 null,表示取不到有效值。
7494
7463
  :type TranscodeInfo: str
7495
7464
  :param _DocumentType: 文档类型
7496
- 注意:此字段可能返回 null,表示取不到有效值。
7497
7465
  :type DocumentType: str
7498
7466
  :param _DocumentSize: 文档大小,单位:字节
7499
- 注意:此字段可能返回 null,表示取不到有效值。
7500
7467
  :type DocumentSize: int
7501
7468
  :param _UpdateTime: 更新的UNIX时间戳
7502
- 注意:此字段可能返回 null,表示取不到有效值。
7503
7469
  :type UpdateTime: int
7504
7470
  :param _Pages: 课件页数
7505
- 注意:此字段可能返回 null,表示取不到有效值。
7506
7471
  :type Pages: int
7507
7472
  :param _Width: 宽,仅在静态转码的课件有效
7508
- 注意:此字段可能返回 null,表示取不到有效值。
7509
7473
  :type Width: int
7510
7474
  :param _Height: 高,仅在静态转码的课件有效
7511
- 注意:此字段可能返回 null,表示取不到有效值。
7512
7475
  :type Height: int
7513
7476
  :param _Cover: 封面,仅转码的课件会生成封面
7514
- 注意:此字段可能返回 null,表示取不到有效值。
7515
7477
  :type Cover: str
7516
7478
  :param _Preview: 课件预览地址
7517
- 注意:此字段可能返回 null,表示取不到有效值。
7518
7479
  :type Preview: str
7519
7480
  :param _Resolution: 文档的分辨率
7520
- 注意:此字段可能返回 null,表示取不到有效值。
7521
7481
  :type Resolution: str
7522
7482
  :param _MinScaleResolution: 转码后文档的最小分辨率,和创建文档时传入的参数一致。
7523
- 注意:此字段可能返回 null,表示取不到有效值。
7524
7483
  :type MinScaleResolution: str
7525
7484
  """
7526
7485
  self._DocumentId = None
@@ -7548,7 +7507,6 @@ class DocumentInfo(AbstractModel):
7548
7507
  @property
7549
7508
  def DocumentId(self):
7550
7509
  """文档Id
7551
- 注意:此字段可能返回 null,表示取不到有效值。
7552
7510
  :rtype: str
7553
7511
  """
7554
7512
  return self._DocumentId
@@ -7560,7 +7518,6 @@ class DocumentInfo(AbstractModel):
7560
7518
  @property
7561
7519
  def DocumentUrl(self):
7562
7520
  """文档原址url
7563
- 注意:此字段可能返回 null,表示取不到有效值。
7564
7521
  :rtype: str
7565
7522
  """
7566
7523
  return self._DocumentUrl
@@ -7572,7 +7529,6 @@ class DocumentInfo(AbstractModel):
7572
7529
  @property
7573
7530
  def DocumentName(self):
7574
7531
  """文档名称
7575
- 注意:此字段可能返回 null,表示取不到有效值。
7576
7532
  :rtype: str
7577
7533
  """
7578
7534
  return self._DocumentName
@@ -7584,7 +7540,6 @@ class DocumentInfo(AbstractModel):
7584
7540
  @property
7585
7541
  def Owner(self):
7586
7542
  """文档所有者UserId
7587
- 注意:此字段可能返回 null,表示取不到有效值。
7588
7543
  :rtype: str
7589
7544
  """
7590
7545
  return self._Owner
@@ -7596,7 +7551,6 @@ class DocumentInfo(AbstractModel):
7596
7551
  @property
7597
7552
  def SdkAppId(self):
7598
7553
  """应用Id
7599
- 注意:此字段可能返回 null,表示取不到有效值。
7600
7554
  :rtype: int
7601
7555
  """
7602
7556
  return self._SdkAppId
@@ -7608,7 +7562,6 @@ class DocumentInfo(AbstractModel):
7608
7562
  @property
7609
7563
  def Permission(self):
7610
7564
  """文档权限,0:私有课件 1:公共课件
7611
- 注意:此字段可能返回 null,表示取不到有效值。
7612
7565
  :rtype: int
7613
7566
  """
7614
7567
  return self._Permission
@@ -7620,7 +7573,6 @@ class DocumentInfo(AbstractModel):
7620
7573
  @property
7621
7574
  def TranscodeResult(self):
7622
7575
  """转码结果,无需转码为空,转码成功为结果url,转码失败为错误码
7623
- 注意:此字段可能返回 null,表示取不到有效值。
7624
7576
  :rtype: str
7625
7577
  """
7626
7578
  return self._TranscodeResult
@@ -7632,7 +7584,6 @@ class DocumentInfo(AbstractModel):
7632
7584
  @property
7633
7585
  def TranscodeType(self):
7634
7586
  """转码类型
7635
- 注意:此字段可能返回 null,表示取不到有效值。
7636
7587
  :rtype: int
7637
7588
  """
7638
7589
  return self._TranscodeType
@@ -7644,7 +7595,6 @@ class DocumentInfo(AbstractModel):
7644
7595
  @property
7645
7596
  def TranscodeProgress(self):
7646
7597
  """转码进度, 0 - 100 表示(0% - 100%)
7647
- 注意:此字段可能返回 null,表示取不到有效值。
7648
7598
  :rtype: int
7649
7599
  """
7650
7600
  return self._TranscodeProgress
@@ -7656,7 +7606,6 @@ class DocumentInfo(AbstractModel):
7656
7606
  @property
7657
7607
  def TranscodeState(self):
7658
7608
  """转码状态,0为无需转码,1为正在转码,2为转码失败,3为转码成功
7659
- 注意:此字段可能返回 null,表示取不到有效值。
7660
7609
  :rtype: int
7661
7610
  """
7662
7611
  return self._TranscodeState
@@ -7668,7 +7617,6 @@ class DocumentInfo(AbstractModel):
7668
7617
  @property
7669
7618
  def TranscodeInfo(self):
7670
7619
  """转码失败后的错误信息
7671
- 注意:此字段可能返回 null,表示取不到有效值。
7672
7620
  :rtype: str
7673
7621
  """
7674
7622
  return self._TranscodeInfo
@@ -7680,7 +7628,6 @@ class DocumentInfo(AbstractModel):
7680
7628
  @property
7681
7629
  def DocumentType(self):
7682
7630
  """文档类型
7683
- 注意:此字段可能返回 null,表示取不到有效值。
7684
7631
  :rtype: str
7685
7632
  """
7686
7633
  return self._DocumentType
@@ -7692,7 +7639,6 @@ class DocumentInfo(AbstractModel):
7692
7639
  @property
7693
7640
  def DocumentSize(self):
7694
7641
  """文档大小,单位:字节
7695
- 注意:此字段可能返回 null,表示取不到有效值。
7696
7642
  :rtype: int
7697
7643
  """
7698
7644
  return self._DocumentSize
@@ -7704,7 +7650,6 @@ class DocumentInfo(AbstractModel):
7704
7650
  @property
7705
7651
  def UpdateTime(self):
7706
7652
  """更新的UNIX时间戳
7707
- 注意:此字段可能返回 null,表示取不到有效值。
7708
7653
  :rtype: int
7709
7654
  """
7710
7655
  return self._UpdateTime
@@ -7716,7 +7661,6 @@ class DocumentInfo(AbstractModel):
7716
7661
  @property
7717
7662
  def Pages(self):
7718
7663
  """课件页数
7719
- 注意:此字段可能返回 null,表示取不到有效值。
7720
7664
  :rtype: int
7721
7665
  """
7722
7666
  return self._Pages
@@ -7728,7 +7672,6 @@ class DocumentInfo(AbstractModel):
7728
7672
  @property
7729
7673
  def Width(self):
7730
7674
  """宽,仅在静态转码的课件有效
7731
- 注意:此字段可能返回 null,表示取不到有效值。
7732
7675
  :rtype: int
7733
7676
  """
7734
7677
  return self._Width
@@ -7740,7 +7683,6 @@ class DocumentInfo(AbstractModel):
7740
7683
  @property
7741
7684
  def Height(self):
7742
7685
  """高,仅在静态转码的课件有效
7743
- 注意:此字段可能返回 null,表示取不到有效值。
7744
7686
  :rtype: int
7745
7687
  """
7746
7688
  return self._Height
@@ -7752,7 +7694,6 @@ class DocumentInfo(AbstractModel):
7752
7694
  @property
7753
7695
  def Cover(self):
7754
7696
  """封面,仅转码的课件会生成封面
7755
- 注意:此字段可能返回 null,表示取不到有效值。
7756
7697
  :rtype: str
7757
7698
  """
7758
7699
  return self._Cover
@@ -7764,7 +7705,6 @@ class DocumentInfo(AbstractModel):
7764
7705
  @property
7765
7706
  def Preview(self):
7766
7707
  """课件预览地址
7767
- 注意:此字段可能返回 null,表示取不到有效值。
7768
7708
  :rtype: str
7769
7709
  """
7770
7710
  return self._Preview
@@ -7776,7 +7716,6 @@ class DocumentInfo(AbstractModel):
7776
7716
  @property
7777
7717
  def Resolution(self):
7778
7718
  """文档的分辨率
7779
- 注意:此字段可能返回 null,表示取不到有效值。
7780
7719
  :rtype: str
7781
7720
  """
7782
7721
  return self._Resolution
@@ -7788,7 +7727,6 @@ class DocumentInfo(AbstractModel):
7788
7727
  @property
7789
7728
  def MinScaleResolution(self):
7790
7729
  """转码后文档的最小分辨率,和创建文档时传入的参数一致。
7791
- 注意:此字段可能返回 null,表示取不到有效值。
7792
7730
  :rtype: str
7793
7731
  """
7794
7732
  return self._MinScaleResolution
@@ -7902,22 +7840,16 @@ class EventDataInfo(AbstractModel):
7902
7840
  def __init__(self):
7903
7841
  r"""
7904
7842
  :param _RoomId: 事件发生的房间号。
7905
- 注意:此字段可能返回 null,表示取不到有效值。
7906
7843
  :type RoomId: int
7907
7844
  :param _UserId: 事件发生的用户。
7908
- 注意:此字段可能返回 null,表示取不到有效值。
7909
7845
  :type UserId: str
7910
7846
  :param _Device: 用户设备类型。0: Unknown; 1: Windows; 2: macOS; 3: Android; 4: iOS; 5: Web; 6: Mobile webpage; 7: Weixin Mini Program.
7911
- 注意:此字段可能返回 null,表示取不到有效值。
7912
7847
  :type Device: int
7913
7848
  :param _Duration: 录制时长。单位:秒
7914
- 注意:此字段可能返回 null,表示取不到有效值。
7915
7849
  :type Duration: int
7916
7850
  :param _RecordSize: 录制文件大小
7917
- 注意:此字段可能返回 null,表示取不到有效值。
7918
7851
  :type RecordSize: int
7919
7852
  :param _RecordUrl: 录制url
7920
- 注意:此字段可能返回 null,表示取不到有效值。
7921
7853
  :type RecordUrl: str
7922
7854
  """
7923
7855
  self._RoomId = None
@@ -7930,7 +7862,6 @@ class EventDataInfo(AbstractModel):
7930
7862
  @property
7931
7863
  def RoomId(self):
7932
7864
  """事件发生的房间号。
7933
- 注意:此字段可能返回 null,表示取不到有效值。
7934
7865
  :rtype: int
7935
7866
  """
7936
7867
  return self._RoomId
@@ -7942,7 +7873,6 @@ class EventDataInfo(AbstractModel):
7942
7873
  @property
7943
7874
  def UserId(self):
7944
7875
  """事件发生的用户。
7945
- 注意:此字段可能返回 null,表示取不到有效值。
7946
7876
  :rtype: str
7947
7877
  """
7948
7878
  return self._UserId
@@ -7954,7 +7884,6 @@ class EventDataInfo(AbstractModel):
7954
7884
  @property
7955
7885
  def Device(self):
7956
7886
  """用户设备类型。0: Unknown; 1: Windows; 2: macOS; 3: Android; 4: iOS; 5: Web; 6: Mobile webpage; 7: Weixin Mini Program.
7957
- 注意:此字段可能返回 null,表示取不到有效值。
7958
7887
  :rtype: int
7959
7888
  """
7960
7889
  return self._Device
@@ -7966,7 +7895,6 @@ class EventDataInfo(AbstractModel):
7966
7895
  @property
7967
7896
  def Duration(self):
7968
7897
  """录制时长。单位:秒
7969
- 注意:此字段可能返回 null,表示取不到有效值。
7970
7898
  :rtype: int
7971
7899
  """
7972
7900
  return self._Duration
@@ -7978,7 +7906,6 @@ class EventDataInfo(AbstractModel):
7978
7906
  @property
7979
7907
  def RecordSize(self):
7980
7908
  """录制文件大小
7981
- 注意:此字段可能返回 null,表示取不到有效值。
7982
7909
  :rtype: int
7983
7910
  """
7984
7911
  return self._RecordSize
@@ -7990,7 +7917,6 @@ class EventDataInfo(AbstractModel):
7990
7917
  @property
7991
7918
  def RecordUrl(self):
7992
7919
  """录制url
7993
- 注意:此字段可能返回 null,表示取不到有效值。
7994
7920
  :rtype: str
7995
7921
  """
7996
7922
  return self._RecordUrl
@@ -8038,7 +7964,6 @@ VisibleOn: 页面可见
8038
7964
  VisibleOff: 页面不可见
8039
7965
  :type EventType: str
8040
7966
  :param _EventData: 事件详细内容,包含房间号,成员类型事件包含用户Id。
8041
- 注意:此字段可能返回 null,表示取不到有效值。
8042
7967
  :type EventData: :class:`tencentcloud.lcic.v20220817.models.EventDataInfo`
8043
7968
  """
8044
7969
  self._Timestamp = None
@@ -8079,7 +8004,6 @@ VisibleOff: 页面不可见
8079
8004
  @property
8080
8005
  def EventData(self):
8081
8006
  """事件详细内容,包含房间号,成员类型事件包含用户Id。
8082
- 注意:此字段可能返回 null,表示取不到有效值。
8083
8007
  :rtype: :class:`tencentcloud.lcic.v20220817.models.EventDataInfo`
8084
8008
  """
8085
8009
  return self._EventData
@@ -8948,18 +8872,14 @@ class GroupInfo(AbstractModel):
8948
8872
  def __init__(self):
8949
8873
  r"""
8950
8874
  :param _GroupId: 群组ID
8951
- 注意:此字段可能返回 null,表示取不到有效值。
8952
8875
  :type GroupId: str
8953
8876
  :param _GroupName: 群组名称
8954
- 注意:此字段可能返回 null,表示取不到有效值。
8955
8877
  :type GroupName: str
8956
8878
  :param _TeacherId: 群组主讲人ID
8957
- 注意:此字段可能返回 null,表示取不到有效值。
8958
8879
  :type TeacherId: str
8959
8880
  :param _GroupType: 群组类型
8960
8881
  0-基础群组
8961
8882
  1-组合群组,若为1时会返回子群组ID列表
8962
- 注意:此字段可能返回 null,表示取不到有效值。
8963
8883
  :type GroupType: int
8964
8884
  :param _SubGroupIds: 子群组ID列表,如有。
8965
8885
  注意:此字段可能返回 null,表示取不到有效值。
@@ -8974,7 +8894,6 @@ class GroupInfo(AbstractModel):
8974
8894
  @property
8975
8895
  def GroupId(self):
8976
8896
  """群组ID
8977
- 注意:此字段可能返回 null,表示取不到有效值。
8978
8897
  :rtype: str
8979
8898
  """
8980
8899
  return self._GroupId
@@ -8986,7 +8905,6 @@ class GroupInfo(AbstractModel):
8986
8905
  @property
8987
8906
  def GroupName(self):
8988
8907
  """群组名称
8989
- 注意:此字段可能返回 null,表示取不到有效值。
8990
8908
  :rtype: str
8991
8909
  """
8992
8910
  return self._GroupName
@@ -8998,7 +8916,6 @@ class GroupInfo(AbstractModel):
8998
8916
  @property
8999
8917
  def TeacherId(self):
9000
8918
  """群组主讲人ID
9001
- 注意:此字段可能返回 null,表示取不到有效值。
9002
8919
  :rtype: str
9003
8920
  """
9004
8921
  return self._TeacherId
@@ -9012,7 +8929,6 @@ class GroupInfo(AbstractModel):
9012
8929
  """群组类型
9013
8930
  0-基础群组
9014
8931
  1-组合群组,若为1时会返回子群组ID列表
9015
- 注意:此字段可能返回 null,表示取不到有效值。
9016
8932
  :rtype: int
9017
8933
  """
9018
8934
  return self._GroupType
@@ -9616,10 +9532,8 @@ class MemberRecord(AbstractModel):
9616
9532
  注意:此字段可能返回 null,表示取不到有效值。
9617
9533
  :type SubGroupId: list of str
9618
9534
  :param _Stage: 用户的上台状态
9619
- 注意:此字段可能返回 null,表示取不到有效值。
9620
9535
  :type Stage: int
9621
9536
  :param _CurrentState: 用户状态。0为未到,1为在线,2为离线,3为被踢,4为永久被踢,5为暂时掉线
9622
- 注意:此字段可能返回 null,表示取不到有效值。
9623
9537
  :type CurrentState: int
9624
9538
  """
9625
9539
  self._UserId = None
@@ -9858,7 +9772,6 @@ class MemberRecord(AbstractModel):
9858
9772
  @property
9859
9773
  def Stage(self):
9860
9774
  """用户的上台状态
9861
- 注意:此字段可能返回 null,表示取不到有效值。
9862
9775
  :rtype: int
9863
9776
  """
9864
9777
  return self._Stage
@@ -9870,7 +9783,6 @@ class MemberRecord(AbstractModel):
9870
9783
  @property
9871
9784
  def CurrentState(self):
9872
9785
  """用户状态。0为未到,1为在线,2为离线,3为被踢,4为永久被踢,5为暂时掉线
9873
- 注意:此字段可能返回 null,表示取不到有效值。
9874
9786
  :rtype: int
9875
9787
  """
9876
9788
  return self._CurrentState
@@ -9920,16 +9832,12 @@ class MessageItem(AbstractModel):
9920
9832
  def __init__(self):
9921
9833
  r"""
9922
9834
  :param _MessageType: 消息类型。0表示文本消息,1表示图片消息
9923
- 注意:此字段可能返回 null,表示取不到有效值。
9924
9835
  :type MessageType: int
9925
9836
  :param _TextMessage: 文本消息内容。message type为0时有效。
9926
- 注意:此字段可能返回 null,表示取不到有效值。
9927
9837
  :type TextMessage: str
9928
9838
  :param _ImageMessage: 图片消息URL。 message type为1时有效。
9929
- 注意:此字段可能返回 null,表示取不到有效值。
9930
9839
  :type ImageMessage: str
9931
9840
  :param _CustomMessage: 自定义消息内容。message type为2时有效。
9932
- 注意:此字段可能返回 null,表示取不到有效值。
9933
9841
  :type CustomMessage: :class:`tencentcloud.lcic.v20220817.models.CustomMsgContent`
9934
9842
  """
9935
9843
  self._MessageType = None
@@ -9940,7 +9848,6 @@ class MessageItem(AbstractModel):
9940
9848
  @property
9941
9849
  def MessageType(self):
9942
9850
  """消息类型。0表示文本消息,1表示图片消息
9943
- 注意:此字段可能返回 null,表示取不到有效值。
9944
9851
  :rtype: int
9945
9852
  """
9946
9853
  return self._MessageType
@@ -9952,7 +9859,6 @@ class MessageItem(AbstractModel):
9952
9859
  @property
9953
9860
  def TextMessage(self):
9954
9861
  """文本消息内容。message type为0时有效。
9955
- 注意:此字段可能返回 null,表示取不到有效值。
9956
9862
  :rtype: str
9957
9863
  """
9958
9864
  return self._TextMessage
@@ -9964,7 +9870,6 @@ class MessageItem(AbstractModel):
9964
9870
  @property
9965
9871
  def ImageMessage(self):
9966
9872
  """图片消息URL。 message type为1时有效。
9967
- 注意:此字段可能返回 null,表示取不到有效值。
9968
9873
  :rtype: str
9969
9874
  """
9970
9875
  return self._ImageMessage
@@ -9976,7 +9881,6 @@ class MessageItem(AbstractModel):
9976
9881
  @property
9977
9882
  def CustomMessage(self):
9978
9883
  """自定义消息内容。message type为2时有效。
9979
- 注意:此字段可能返回 null,表示取不到有效值。
9980
9884
  :rtype: :class:`tencentcloud.lcic.v20220817.models.CustomMsgContent`
9981
9885
  """
9982
9886
  return self._CustomMessage
@@ -10011,16 +9915,12 @@ class MessageList(AbstractModel):
10011
9915
  def __init__(self):
10012
9916
  r"""
10013
9917
  :param _Timestamp: 消息时间戳
10014
- 注意:此字段可能返回 null,表示取不到有效值。
10015
9918
  :type Timestamp: int
10016
9919
  :param _FromAccount: 消息发送者
10017
- 注意:此字段可能返回 null,表示取不到有效值。
10018
9920
  :type FromAccount: str
10019
9921
  :param _Seq: 消息序列号,当前课堂内唯一且单调递增
10020
- 注意:此字段可能返回 null,表示取不到有效值。
10021
9922
  :type Seq: int
10022
9923
  :param _MessageBody: 历史消息列表
10023
- 注意:此字段可能返回 null,表示取不到有效值。
10024
9924
  :type MessageBody: list of MessageItem
10025
9925
  """
10026
9926
  self._Timestamp = None
@@ -10031,7 +9931,6 @@ class MessageList(AbstractModel):
10031
9931
  @property
10032
9932
  def Timestamp(self):
10033
9933
  """消息时间戳
10034
- 注意:此字段可能返回 null,表示取不到有效值。
10035
9934
  :rtype: int
10036
9935
  """
10037
9936
  return self._Timestamp
@@ -10043,7 +9942,6 @@ class MessageList(AbstractModel):
10043
9942
  @property
10044
9943
  def FromAccount(self):
10045
9944
  """消息发送者
10046
- 注意:此字段可能返回 null,表示取不到有效值。
10047
9945
  :rtype: str
10048
9946
  """
10049
9947
  return self._FromAccount
@@ -10055,7 +9953,6 @@ class MessageList(AbstractModel):
10055
9953
  @property
10056
9954
  def Seq(self):
10057
9955
  """消息序列号,当前课堂内唯一且单调递增
10058
- 注意:此字段可能返回 null,表示取不到有效值。
10059
9956
  :rtype: int
10060
9957
  """
10061
9958
  return self._Seq
@@ -10067,7 +9964,6 @@ class MessageList(AbstractModel):
10067
9964
  @property
10068
9965
  def MessageBody(self):
10069
9966
  """历史消息列表
10070
- 注意:此字段可能返回 null,表示取不到有效值。
10071
9967
  :rtype: list of MessageItem
10072
9968
  """
10073
9969
  return self._MessageBody
@@ -11025,10 +10921,8 @@ class MutedAccountList(AbstractModel):
11025
10921
  def __init__(self):
11026
10922
  r"""
11027
10923
  :param _MemberAccount: 用户 ID
11028
- 注意:此字段可能返回 null,表示取不到有效值。
11029
10924
  :type MemberAccount: str
11030
10925
  :param _MutedUntil: 禁言到的时间(使用 UTC 时间,即世界协调时间)
11031
- 注意:此字段可能返回 null,表示取不到有效值。
11032
10926
  :type MutedUntil: int
11033
10927
  """
11034
10928
  self._MemberAccount = None
@@ -11037,7 +10931,6 @@ class MutedAccountList(AbstractModel):
11037
10931
  @property
11038
10932
  def MemberAccount(self):
11039
10933
  """用户 ID
11040
- 注意:此字段可能返回 null,表示取不到有效值。
11041
10934
  :rtype: str
11042
10935
  """
11043
10936
  return self._MemberAccount
@@ -11049,7 +10942,6 @@ class MutedAccountList(AbstractModel):
11049
10942
  @property
11050
10943
  def MutedUntil(self):
11051
10944
  """禁言到的时间(使用 UTC 时间,即世界协调时间)
11052
- 注意:此字段可能返回 null,表示取不到有效值。
11053
10945
  :rtype: int
11054
10946
  """
11055
10947
  return self._MutedUntil
@@ -11088,7 +10980,6 @@ class QuestionInfo(AbstractModel):
11088
10980
  :param _CorrectAnswer: 正确答案(按照位表示是否选择,如0x1表示选择A,0x11表示选择AB)
11089
10981
  :type CorrectAnswer: int
11090
10982
  :param _AnswerStats: 每个选项答题人数统计
11091
- 注意:此字段可能返回 null,表示取不到有效值。
11092
10983
  :type AnswerStats: list of AnswerStat
11093
10984
  """
11094
10985
  self._QuestionId = None
@@ -11144,7 +11035,6 @@ class QuestionInfo(AbstractModel):
11144
11035
  @property
11145
11036
  def AnswerStats(self):
11146
11037
  """每个选项答题人数统计
11147
- 注意:此字段可能返回 null,表示取不到有效值。
11148
11038
  :rtype: list of AnswerStat
11149
11039
  """
11150
11040
  return self._AnswerStats
@@ -12231,16 +12121,12 @@ class SceneItem(AbstractModel):
12231
12121
  :param _Scene: 场景名称
12232
12122
  :type Scene: str
12233
12123
  :param _LogoUrl: logo地址
12234
- 注意:此字段可能返回 null,表示取不到有效值。
12235
12124
  :type LogoUrl: str
12236
12125
  :param _HomeUrl: 主页地址
12237
- 注意:此字段可能返回 null,表示取不到有效值。
12238
12126
  :type HomeUrl: str
12239
12127
  :param _JSUrl: 自定义的js
12240
- 注意:此字段可能返回 null,表示取不到有效值。
12241
12128
  :type JSUrl: str
12242
12129
  :param _CSSUrl: 自定义的css
12243
- 注意:此字段可能返回 null,表示取不到有效值。
12244
12130
  :type CSSUrl: str
12245
12131
  """
12246
12132
  self._Scene = None
@@ -12263,7 +12149,6 @@ class SceneItem(AbstractModel):
12263
12149
  @property
12264
12150
  def LogoUrl(self):
12265
12151
  """logo地址
12266
- 注意:此字段可能返回 null,表示取不到有效值。
12267
12152
  :rtype: str
12268
12153
  """
12269
12154
  return self._LogoUrl
@@ -12275,7 +12160,6 @@ class SceneItem(AbstractModel):
12275
12160
  @property
12276
12161
  def HomeUrl(self):
12277
12162
  """主页地址
12278
- 注意:此字段可能返回 null,表示取不到有效值。
12279
12163
  :rtype: str
12280
12164
  """
12281
12165
  return self._HomeUrl
@@ -12287,7 +12171,6 @@ class SceneItem(AbstractModel):
12287
12171
  @property
12288
12172
  def JSUrl(self):
12289
12173
  """自定义的js
12290
- 注意:此字段可能返回 null,表示取不到有效值。
12291
12174
  :rtype: str
12292
12175
  """
12293
12176
  return self._JSUrl
@@ -12299,7 +12182,6 @@ class SceneItem(AbstractModel):
12299
12182
  @property
12300
12183
  def CSSUrl(self):
12301
12184
  """自定义的css
12302
- 注意:此字段可能返回 null,表示取不到有效值。
12303
12185
  :rtype: str
12304
12186
  """
12305
12187
  return self._CSSUrl
@@ -13162,31 +13044,22 @@ class SingleStreamInfo(AbstractModel):
13162
13044
  def __init__(self):
13163
13045
  r"""
13164
13046
  :param _UserId: 用户ID
13165
- 注意:此字段可能返回 null,表示取不到有效值。
13166
13047
  :type UserId: str
13167
13048
  :param _StartTime: 开始时间
13168
- 注意:此字段可能返回 null,表示取不到有效值。
13169
13049
  :type StartTime: int
13170
13050
  :param _StopTime: 结束时间
13171
- 注意:此字段可能返回 null,表示取不到有效值。
13172
13051
  :type StopTime: int
13173
13052
  :param _Duration: 总时长
13174
- 注意:此字段可能返回 null,表示取不到有效值。
13175
13053
  :type Duration: int
13176
13054
  :param _FileFormat: 文件格式
13177
- 注意:此字段可能返回 null,表示取不到有效值。
13178
13055
  :type FileFormat: str
13179
13056
  :param _RecordUrl: 流url
13180
- 注意:此字段可能返回 null,表示取不到有效值。
13181
13057
  :type RecordUrl: str
13182
13058
  :param _RecordSize: 流大小
13183
- 注意:此字段可能返回 null,表示取不到有效值。
13184
13059
  :type RecordSize: int
13185
13060
  :param _VideoId: 流ID
13186
- 注意:此字段可能返回 null,表示取不到有效值。
13187
13061
  :type VideoId: str
13188
13062
  :param _Role: 流类型
13189
- 注意:此字段可能返回 null,表示取不到有效值。
13190
13063
  :type Role: str
13191
13064
  """
13192
13065
  self._UserId = None
@@ -13202,7 +13075,6 @@ class SingleStreamInfo(AbstractModel):
13202
13075
  @property
13203
13076
  def UserId(self):
13204
13077
  """用户ID
13205
- 注意:此字段可能返回 null,表示取不到有效值。
13206
13078
  :rtype: str
13207
13079
  """
13208
13080
  return self._UserId
@@ -13214,7 +13086,6 @@ class SingleStreamInfo(AbstractModel):
13214
13086
  @property
13215
13087
  def StartTime(self):
13216
13088
  """开始时间
13217
- 注意:此字段可能返回 null,表示取不到有效值。
13218
13089
  :rtype: int
13219
13090
  """
13220
13091
  return self._StartTime
@@ -13226,7 +13097,6 @@ class SingleStreamInfo(AbstractModel):
13226
13097
  @property
13227
13098
  def StopTime(self):
13228
13099
  """结束时间
13229
- 注意:此字段可能返回 null,表示取不到有效值。
13230
13100
  :rtype: int
13231
13101
  """
13232
13102
  return self._StopTime
@@ -13238,7 +13108,6 @@ class SingleStreamInfo(AbstractModel):
13238
13108
  @property
13239
13109
  def Duration(self):
13240
13110
  """总时长
13241
- 注意:此字段可能返回 null,表示取不到有效值。
13242
13111
  :rtype: int
13243
13112
  """
13244
13113
  return self._Duration
@@ -13250,7 +13119,6 @@ class SingleStreamInfo(AbstractModel):
13250
13119
  @property
13251
13120
  def FileFormat(self):
13252
13121
  """文件格式
13253
- 注意:此字段可能返回 null,表示取不到有效值。
13254
13122
  :rtype: str
13255
13123
  """
13256
13124
  return self._FileFormat
@@ -13262,7 +13130,6 @@ class SingleStreamInfo(AbstractModel):
13262
13130
  @property
13263
13131
  def RecordUrl(self):
13264
13132
  """流url
13265
- 注意:此字段可能返回 null,表示取不到有效值。
13266
13133
  :rtype: str
13267
13134
  """
13268
13135
  return self._RecordUrl
@@ -13274,7 +13141,6 @@ class SingleStreamInfo(AbstractModel):
13274
13141
  @property
13275
13142
  def RecordSize(self):
13276
13143
  """流大小
13277
- 注意:此字段可能返回 null,表示取不到有效值。
13278
13144
  :rtype: int
13279
13145
  """
13280
13146
  return self._RecordSize
@@ -13286,7 +13152,6 @@ class SingleStreamInfo(AbstractModel):
13286
13152
  @property
13287
13153
  def VideoId(self):
13288
13154
  """流ID
13289
- 注意:此字段可能返回 null,表示取不到有效值。
13290
13155
  :rtype: str
13291
13156
  """
13292
13157
  return self._VideoId
@@ -13298,7 +13163,6 @@ class SingleStreamInfo(AbstractModel):
13298
13163
  @property
13299
13164
  def Role(self):
13300
13165
  """流类型
13301
- 注意:此字段可能返回 null,表示取不到有效值。
13302
13166
  :rtype: str
13303
13167
  """
13304
13168
  return self._Role
@@ -13588,10 +13452,8 @@ class TextMarkConfig(AbstractModel):
13588
13452
  def __init__(self):
13589
13453
  r"""
13590
13454
  :param _Text: 文字水印内容
13591
- 注意:此字段可能返回 null,表示取不到有效值。
13592
13455
  :type Text: str
13593
13456
  :param _Color: 文字水印颜色
13594
- 注意:此字段可能返回 null,表示取不到有效值。
13595
13457
  :type Color: str
13596
13458
  """
13597
13459
  self._Text = None
@@ -13600,7 +13462,6 @@ class TextMarkConfig(AbstractModel):
13600
13462
  @property
13601
13463
  def Text(self):
13602
13464
  """文字水印内容
13603
- 注意:此字段可能返回 null,表示取不到有效值。
13604
13465
  :rtype: str
13605
13466
  """
13606
13467
  return self._Text
@@ -13612,7 +13473,6 @@ class TextMarkConfig(AbstractModel):
13612
13473
  @property
13613
13474
  def Color(self):
13614
13475
  """文字水印颜色
13615
- 注意:此字段可能返回 null,表示取不到有效值。
13616
13476
  :rtype: str
13617
13477
  """
13618
13478
  return self._Color
@@ -13890,19 +13750,14 @@ class UserInfo(AbstractModel):
13890
13750
  def __init__(self):
13891
13751
  r"""
13892
13752
  :param _SdkAppId: 应用Id。
13893
- 注意:此字段可能返回 null,表示取不到有效值。
13894
13753
  :type SdkAppId: int
13895
13754
  :param _UserId: 用户Id。
13896
- 注意:此字段可能返回 null,表示取不到有效值。
13897
13755
  :type UserId: str
13898
13756
  :param _Name: 用户昵称。
13899
- 注意:此字段可能返回 null,表示取不到有效值。
13900
13757
  :type Name: str
13901
13758
  :param _Avatar: 用户头像Url。
13902
- 注意:此字段可能返回 null,表示取不到有效值。
13903
13759
  :type Avatar: str
13904
13760
  :param _OriginId: 用户在客户系统的Id
13905
- 注意:此字段可能返回 null,表示取不到有效值。
13906
13761
  :type OriginId: str
13907
13762
  """
13908
13763
  self._SdkAppId = None
@@ -13914,7 +13769,6 @@ class UserInfo(AbstractModel):
13914
13769
  @property
13915
13770
  def SdkAppId(self):
13916
13771
  """应用Id。
13917
- 注意:此字段可能返回 null,表示取不到有效值。
13918
13772
  :rtype: int
13919
13773
  """
13920
13774
  return self._SdkAppId
@@ -13926,7 +13780,6 @@ class UserInfo(AbstractModel):
13926
13780
  @property
13927
13781
  def UserId(self):
13928
13782
  """用户Id。
13929
- 注意:此字段可能返回 null,表示取不到有效值。
13930
13783
  :rtype: str
13931
13784
  """
13932
13785
  return self._UserId
@@ -13938,7 +13791,6 @@ class UserInfo(AbstractModel):
13938
13791
  @property
13939
13792
  def Name(self):
13940
13793
  """用户昵称。
13941
- 注意:此字段可能返回 null,表示取不到有效值。
13942
13794
  :rtype: str
13943
13795
  """
13944
13796
  return self._Name
@@ -13950,7 +13802,6 @@ class UserInfo(AbstractModel):
13950
13802
  @property
13951
13803
  def Avatar(self):
13952
13804
  """用户头像Url。
13953
- 注意:此字段可能返回 null,表示取不到有效值。
13954
13805
  :rtype: str
13955
13806
  """
13956
13807
  return self._Avatar
@@ -13962,7 +13813,6 @@ class UserInfo(AbstractModel):
13962
13813
  @property
13963
13814
  def OriginId(self):
13964
13815
  """用户在客户系统的Id
13965
- 注意:此字段可能返回 null,表示取不到有效值。
13966
13816
  :rtype: str
13967
13817
  """
13968
13818
  return self._OriginId
@@ -13996,19 +13846,14 @@ class WatermarkConfig(AbstractModel):
13996
13846
  def __init__(self):
13997
13847
  r"""
13998
13848
  :param _Url: 水印图片的url
13999
- 注意:此字段可能返回 null,表示取不到有效值。
14000
13849
  :type Url: str
14001
13850
  :param _Width: 水印宽。为比例值
14002
- 注意:此字段可能返回 null,表示取不到有效值。
14003
13851
  :type Width: float
14004
13852
  :param _Height: 水印高。为比例值
14005
- 注意:此字段可能返回 null,表示取不到有效值。
14006
13853
  :type Height: float
14007
13854
  :param _LocationX: 水印X偏移, 取值:0-100, 表示区域X方向的百分比。比如50,则表示位于X轴中间。
14008
- 注意:此字段可能返回 null,表示取不到有效值。
14009
13855
  :type LocationX: float
14010
13856
  :param _LocationY: 水印Y偏移, 取值:0-100, 表示区域Y方向的百分比。比如50,则表示位于Y轴中间。
14011
- 注意:此字段可能返回 null,表示取不到有效值。
14012
13857
  :type LocationY: float
14013
13858
  """
14014
13859
  self._Url = None
@@ -14020,7 +13865,6 @@ class WatermarkConfig(AbstractModel):
14020
13865
  @property
14021
13866
  def Url(self):
14022
13867
  """水印图片的url
14023
- 注意:此字段可能返回 null,表示取不到有效值。
14024
13868
  :rtype: str
14025
13869
  """
14026
13870
  return self._Url
@@ -14032,7 +13876,6 @@ class WatermarkConfig(AbstractModel):
14032
13876
  @property
14033
13877
  def Width(self):
14034
13878
  """水印宽。为比例值
14035
- 注意:此字段可能返回 null,表示取不到有效值。
14036
13879
  :rtype: float
14037
13880
  """
14038
13881
  return self._Width
@@ -14044,7 +13887,6 @@ class WatermarkConfig(AbstractModel):
14044
13887
  @property
14045
13888
  def Height(self):
14046
13889
  """水印高。为比例值
14047
- 注意:此字段可能返回 null,表示取不到有效值。
14048
13890
  :rtype: float
14049
13891
  """
14050
13892
  return self._Height
@@ -14056,7 +13898,6 @@ class WatermarkConfig(AbstractModel):
14056
13898
  @property
14057
13899
  def LocationX(self):
14058
13900
  """水印X偏移, 取值:0-100, 表示区域X方向的百分比。比如50,则表示位于X轴中间。
14059
- 注意:此字段可能返回 null,表示取不到有效值。
14060
13901
  :rtype: float
14061
13902
  """
14062
13903
  return self._LocationX
@@ -14068,7 +13909,6 @@ class WatermarkConfig(AbstractModel):
14068
13909
  @property
14069
13910
  def LocationY(self):
14070
13911
  """水印Y偏移, 取值:0-100, 表示区域Y方向的百分比。比如50,则表示位于Y轴中间。
14071
- 注意:此字段可能返回 null,表示取不到有效值。
14072
13912
  :rtype: float
14073
13913
  """
14074
13914
  return self._LocationY