tencentcloud-sdk-python 3.0.1297__py2.py3-none-any.whl → 3.0.1298__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 (29) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/billing/v20180709/models.py +90 -0
  3. tencentcloud/cam/v20190116/models.py +2 -2
  4. tencentcloud/ccc/v20200210/models.py +121 -0
  5. tencentcloud/cls/v20201016/models.py +2 -2
  6. tencentcloud/dbbrain/v20210527/models.py +17 -2
  7. tencentcloud/ess/v20201111/models.py +58 -156
  8. tencentcloud/essbasic/v20210526/models.py +6 -108
  9. tencentcloud/hunyuan/v20230901/models.py +7 -7
  10. tencentcloud/lcic/v20220817/models.py +10 -4
  11. tencentcloud/lkeap/v20240522/lkeap_client.py +24 -0
  12. tencentcloud/lkeap/v20240522/models.py +167 -0
  13. tencentcloud/mongodb/v20180408/errorcodes.py +3 -0
  14. tencentcloud/mongodb/v20180408/models.py +76 -18
  15. tencentcloud/mongodb/v20180408/mongodb_client.py +1 -1
  16. tencentcloud/mongodb/v20190725/models.py +49 -96
  17. tencentcloud/ocr/v20181119/ocr_client.py +3 -3
  18. tencentcloud/ssl/v20191205/models.py +2 -2
  19. tencentcloud/tcb/v20180608/models.py +14 -28
  20. tencentcloud/tcbr/v20220217/models.py +51 -6
  21. tencentcloud/tdmq/v20200217/models.py +205 -0
  22. tencentcloud/tdmq/v20200217/tdmq_client.py +23 -0
  23. tencentcloud/trtc/v20190722/models.py +4 -8
  24. tencentcloud/vpc/v20170312/models.py +48 -23
  25. {tencentcloud_sdk_python-3.0.1297.dist-info → tencentcloud_sdk_python-3.0.1298.dist-info}/METADATA +1 -1
  26. {tencentcloud_sdk_python-3.0.1297.dist-info → tencentcloud_sdk_python-3.0.1298.dist-info}/RECORD +29 -29
  27. {tencentcloud_sdk_python-3.0.1297.dist-info → tencentcloud_sdk_python-3.0.1298.dist-info}/LICENSE +0 -0
  28. {tencentcloud_sdk_python-3.0.1297.dist-info → tencentcloud_sdk_python-3.0.1298.dist-info}/WHEEL +0 -0
  29. {tencentcloud_sdk_python-3.0.1297.dist-info → tencentcloud_sdk_python-3.0.1298.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py CHANGED
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1297'
17
+ __version__ = '3.0.1298'
@@ -23993,6 +23993,18 @@ class DescribeVoucherInfoRequest(AbstractModel):
23993
23993
  :type VoucherMainType: str
23994
23994
  :param _VoucherSubType: 代金券副类型 discount 为折扣券 deduct 为抵扣券
23995
23995
  :type VoucherSubType: str
23996
+ :param _StartTimeFrom: 券有效时间开始时间
23997
+ :type StartTimeFrom: str
23998
+ :param _StartTimeTo: 券有效时间结束时间
23999
+ :type StartTimeTo: str
24000
+ :param _EndTimeFrom: 券失效时间开始时间
24001
+ :type EndTimeFrom: str
24002
+ :param _EndTimeTo: 券失效时间结束时间
24003
+ :type EndTimeTo: str
24004
+ :param _CreateTimeFrom: 发券时间开始时间
24005
+ :type CreateTimeFrom: str
24006
+ :param _CreateTimeTo: 发券时间结束时间
24007
+ :type CreateTimeTo: str
23996
24008
  """
23997
24009
  self._Limit = None
23998
24010
  self._Offset = None
@@ -24011,6 +24023,12 @@ class DescribeVoucherInfoRequest(AbstractModel):
24011
24023
  self._Operator = None
24012
24024
  self._VoucherMainType = None
24013
24025
  self._VoucherSubType = None
24026
+ self._StartTimeFrom = None
24027
+ self._StartTimeTo = None
24028
+ self._EndTimeFrom = None
24029
+ self._EndTimeTo = None
24030
+ self._CreateTimeFrom = None
24031
+ self._CreateTimeTo = None
24014
24032
 
24015
24033
  @property
24016
24034
  def Limit(self):
@@ -24199,6 +24217,72 @@ class DescribeVoucherInfoRequest(AbstractModel):
24199
24217
  def VoucherSubType(self, VoucherSubType):
24200
24218
  self._VoucherSubType = VoucherSubType
24201
24219
 
24220
+ @property
24221
+ def StartTimeFrom(self):
24222
+ """券有效时间开始时间
24223
+ :rtype: str
24224
+ """
24225
+ return self._StartTimeFrom
24226
+
24227
+ @StartTimeFrom.setter
24228
+ def StartTimeFrom(self, StartTimeFrom):
24229
+ self._StartTimeFrom = StartTimeFrom
24230
+
24231
+ @property
24232
+ def StartTimeTo(self):
24233
+ """券有效时间结束时间
24234
+ :rtype: str
24235
+ """
24236
+ return self._StartTimeTo
24237
+
24238
+ @StartTimeTo.setter
24239
+ def StartTimeTo(self, StartTimeTo):
24240
+ self._StartTimeTo = StartTimeTo
24241
+
24242
+ @property
24243
+ def EndTimeFrom(self):
24244
+ """券失效时间开始时间
24245
+ :rtype: str
24246
+ """
24247
+ return self._EndTimeFrom
24248
+
24249
+ @EndTimeFrom.setter
24250
+ def EndTimeFrom(self, EndTimeFrom):
24251
+ self._EndTimeFrom = EndTimeFrom
24252
+
24253
+ @property
24254
+ def EndTimeTo(self):
24255
+ """券失效时间结束时间
24256
+ :rtype: str
24257
+ """
24258
+ return self._EndTimeTo
24259
+
24260
+ @EndTimeTo.setter
24261
+ def EndTimeTo(self, EndTimeTo):
24262
+ self._EndTimeTo = EndTimeTo
24263
+
24264
+ @property
24265
+ def CreateTimeFrom(self):
24266
+ """发券时间开始时间
24267
+ :rtype: str
24268
+ """
24269
+ return self._CreateTimeFrom
24270
+
24271
+ @CreateTimeFrom.setter
24272
+ def CreateTimeFrom(self, CreateTimeFrom):
24273
+ self._CreateTimeFrom = CreateTimeFrom
24274
+
24275
+ @property
24276
+ def CreateTimeTo(self):
24277
+ """发券时间结束时间
24278
+ :rtype: str
24279
+ """
24280
+ return self._CreateTimeTo
24281
+
24282
+ @CreateTimeTo.setter
24283
+ def CreateTimeTo(self, CreateTimeTo):
24284
+ self._CreateTimeTo = CreateTimeTo
24285
+
24202
24286
 
24203
24287
  def _deserialize(self, params):
24204
24288
  self._Limit = params.get("Limit")
@@ -24218,6 +24302,12 @@ class DescribeVoucherInfoRequest(AbstractModel):
24218
24302
  self._Operator = params.get("Operator")
24219
24303
  self._VoucherMainType = params.get("VoucherMainType")
24220
24304
  self._VoucherSubType = params.get("VoucherSubType")
24305
+ self._StartTimeFrom = params.get("StartTimeFrom")
24306
+ self._StartTimeTo = params.get("StartTimeTo")
24307
+ self._EndTimeFrom = params.get("EndTimeFrom")
24308
+ self._EndTimeTo = params.get("EndTimeTo")
24309
+ self._CreateTimeFrom = params.get("CreateTimeFrom")
24310
+ self._CreateTimeTo = params.get("CreateTimeTo")
24221
24311
  memeber_set = set(params.keys())
24222
24312
  for name, value in vars(self).items():
24223
24313
  property_name = name[1:]
@@ -4890,7 +4890,7 @@ class DescribeUserSAMLConfigResponse(AbstractModel):
4890
4890
  r"""
4891
4891
  :param _SAMLMetadata: SAML元数据文档
4892
4892
  :type SAMLMetadata: str
4893
- :param _Status: 状态:0:未设置,1:已开启,2:已禁用
4893
+ :param _Status: 状态:0:未设置,11:已开启,2:已禁用
4894
4894
  :type Status: int
4895
4895
  :param _AuxiliaryDomain: 辅助域名
4896
4896
  :type AuxiliaryDomain: str
@@ -4915,7 +4915,7 @@ class DescribeUserSAMLConfigResponse(AbstractModel):
4915
4915
 
4916
4916
  @property
4917
4917
  def Status(self):
4918
- """状态:0:未设置,1:已开启,2:已禁用
4918
+ """状态:0:未设置,11:已开启,2:已禁用
4919
4919
  :rtype: int
4920
4920
  """
4921
4921
  return self._Status
@@ -18,6 +18,72 @@ import warnings
18
18
  from tencentcloud.common.abstract_model import AbstractModel
19
19
 
20
20
 
21
+ class AITransferItem(AbstractModel):
22
+ """AI转人工配置项
23
+
24
+ """
25
+
26
+ def __init__(self):
27
+ r"""
28
+ :param _TransferFunctionName: 转人工的function calling 名称
29
+ :type TransferFunctionName: str
30
+ :param _TransferFunctionDesc: TransferFunctionEnable为true时生效;transfer_to_human function calling的desc,默认为 "Transfer to human when the user has to transfer to human (like says transfer to human) or you are instructed to do so."
31
+ :type TransferFunctionDesc: str
32
+ :param _TransferSkillGroupId: 转人工的技能组ID
33
+ :type TransferSkillGroupId: int
34
+ """
35
+ self._TransferFunctionName = None
36
+ self._TransferFunctionDesc = None
37
+ self._TransferSkillGroupId = None
38
+
39
+ @property
40
+ def TransferFunctionName(self):
41
+ """转人工的function calling 名称
42
+ :rtype: str
43
+ """
44
+ return self._TransferFunctionName
45
+
46
+ @TransferFunctionName.setter
47
+ def TransferFunctionName(self, TransferFunctionName):
48
+ self._TransferFunctionName = TransferFunctionName
49
+
50
+ @property
51
+ def TransferFunctionDesc(self):
52
+ """TransferFunctionEnable为true时生效;transfer_to_human function calling的desc,默认为 "Transfer to human when the user has to transfer to human (like says transfer to human) or you are instructed to do so."
53
+ :rtype: str
54
+ """
55
+ return self._TransferFunctionDesc
56
+
57
+ @TransferFunctionDesc.setter
58
+ def TransferFunctionDesc(self, TransferFunctionDesc):
59
+ self._TransferFunctionDesc = TransferFunctionDesc
60
+
61
+ @property
62
+ def TransferSkillGroupId(self):
63
+ """转人工的技能组ID
64
+ :rtype: int
65
+ """
66
+ return self._TransferSkillGroupId
67
+
68
+ @TransferSkillGroupId.setter
69
+ def TransferSkillGroupId(self, TransferSkillGroupId):
70
+ self._TransferSkillGroupId = TransferSkillGroupId
71
+
72
+
73
+ def _deserialize(self, params):
74
+ self._TransferFunctionName = params.get("TransferFunctionName")
75
+ self._TransferFunctionDesc = params.get("TransferFunctionDesc")
76
+ self._TransferSkillGroupId = params.get("TransferSkillGroupId")
77
+ memeber_set = set(params.keys())
78
+ for name, value in vars(self).items():
79
+ property_name = name[1:]
80
+ if property_name in memeber_set:
81
+ memeber_set.remove(property_name)
82
+ if len(memeber_set) > 0:
83
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
84
+
85
+
86
+
21
87
  class AbortPredictiveDialingCampaignRequest(AbstractModel):
22
88
  """AbortPredictiveDialingCampaign请求参数结构体
23
89
 
@@ -1980,6 +2046,10 @@ HoaiMy
1980
2046
  :type EndFunctionEnable: bool
1981
2047
  :param _EndFunctionDesc: EndFunctionEnable为true时生效;call_end function calling的desc,默认为 "End the call when user has to leave (like says bye) or you are instructed to do so."
1982
2048
  :type EndFunctionDesc: str
2049
+ :param _TransferFunctionEnable: 模型是否支持(或者开启)transfer_to_human function calling
2050
+ :type TransferFunctionEnable: bool
2051
+ :param _TransferItems: TransferFunctionEnable为true的时候生效: 转人工配置
2052
+ :type TransferItems: list of AITransferItem
1983
2053
  :param _NotifyDuration: 用户多久没说话提示时长,最小10秒,默认10秒
1984
2054
  :type NotifyDuration: int
1985
2055
  :param _NotifyMessage: 用户NotifyDuration没说话,AI提示的语句,默认是"抱歉,我没听清。您可以重复下吗?"
@@ -2066,6 +2136,8 @@ HoaiMy
2066
2136
 
2067
2137
  </div></div>
2068
2138
  :type CustomTTSConfig: str
2139
+ :param _PromptVariables: 提示词变量
2140
+ :type PromptVariables: list of Variable
2069
2141
  """
2070
2142
  self._SdkAppId = None
2071
2143
  self._Callee = None
@@ -2084,10 +2156,13 @@ HoaiMy
2084
2156
  self._InterruptSpeechDuration = None
2085
2157
  self._EndFunctionEnable = None
2086
2158
  self._EndFunctionDesc = None
2159
+ self._TransferFunctionEnable = None
2160
+ self._TransferItems = None
2087
2161
  self._NotifyDuration = None
2088
2162
  self._NotifyMessage = None
2089
2163
  self._NotifyMaxCount = None
2090
2164
  self._CustomTTSConfig = None
2165
+ self._PromptVariables = None
2091
2166
 
2092
2167
  @property
2093
2168
  def SdkAppId(self):
@@ -2364,6 +2439,28 @@ HoaiMy
2364
2439
  def EndFunctionDesc(self, EndFunctionDesc):
2365
2440
  self._EndFunctionDesc = EndFunctionDesc
2366
2441
 
2442
+ @property
2443
+ def TransferFunctionEnable(self):
2444
+ """模型是否支持(或者开启)transfer_to_human function calling
2445
+ :rtype: bool
2446
+ """
2447
+ return self._TransferFunctionEnable
2448
+
2449
+ @TransferFunctionEnable.setter
2450
+ def TransferFunctionEnable(self, TransferFunctionEnable):
2451
+ self._TransferFunctionEnable = TransferFunctionEnable
2452
+
2453
+ @property
2454
+ def TransferItems(self):
2455
+ """TransferFunctionEnable为true的时候生效: 转人工配置
2456
+ :rtype: list of AITransferItem
2457
+ """
2458
+ return self._TransferItems
2459
+
2460
+ @TransferItems.setter
2461
+ def TransferItems(self, TransferItems):
2462
+ self._TransferItems = TransferItems
2463
+
2367
2464
  @property
2368
2465
  def NotifyDuration(self):
2369
2466
  """用户多久没说话提示时长,最小10秒,默认10秒
@@ -2486,6 +2583,17 @@ HoaiMy
2486
2583
  def CustomTTSConfig(self, CustomTTSConfig):
2487
2584
  self._CustomTTSConfig = CustomTTSConfig
2488
2585
 
2586
+ @property
2587
+ def PromptVariables(self):
2588
+ """提示词变量
2589
+ :rtype: list of Variable
2590
+ """
2591
+ return self._PromptVariables
2592
+
2593
+ @PromptVariables.setter
2594
+ def PromptVariables(self, PromptVariables):
2595
+ self._PromptVariables = PromptVariables
2596
+
2489
2597
 
2490
2598
  def _deserialize(self, params):
2491
2599
  self._SdkAppId = params.get("SdkAppId")
@@ -2505,10 +2613,23 @@ HoaiMy
2505
2613
  self._InterruptSpeechDuration = params.get("InterruptSpeechDuration")
2506
2614
  self._EndFunctionEnable = params.get("EndFunctionEnable")
2507
2615
  self._EndFunctionDesc = params.get("EndFunctionDesc")
2616
+ self._TransferFunctionEnable = params.get("TransferFunctionEnable")
2617
+ if params.get("TransferItems") is not None:
2618
+ self._TransferItems = []
2619
+ for item in params.get("TransferItems"):
2620
+ obj = AITransferItem()
2621
+ obj._deserialize(item)
2622
+ self._TransferItems.append(obj)
2508
2623
  self._NotifyDuration = params.get("NotifyDuration")
2509
2624
  self._NotifyMessage = params.get("NotifyMessage")
2510
2625
  self._NotifyMaxCount = params.get("NotifyMaxCount")
2511
2626
  self._CustomTTSConfig = params.get("CustomTTSConfig")
2627
+ if params.get("PromptVariables") is not None:
2628
+ self._PromptVariables = []
2629
+ for item in params.get("PromptVariables"):
2630
+ obj = Variable()
2631
+ obj._deserialize(item)
2632
+ self._PromptVariables.append(obj)
2512
2633
  memeber_set = set(params.keys())
2513
2634
  for name, value in vars(self).items():
2514
2635
  property_name = name[1:]
@@ -3707,7 +3707,7 @@ class ConsoleSharingConfig(AbstractModel):
3707
3707
  - datasight内网匿名分享(若开启):datasight内网域名
3708
3708
  注意:此字段可能返回 null,表示取不到有效值。
3709
3709
  :type Domain: str
3710
- :param _VerifyCode: 验证码
3710
+ :param _VerifyCode: 分享链接加密访问验证码。支持0-9和a-z(不区分大小写)在内的6个字符,可为空,代表免验证码访问
3711
3711
  注意:此字段可能返回 null,表示取不到有效值。
3712
3712
  :type VerifyCode: str
3713
3713
  :param _StartTime: 默认查询范围的开始时间点,支持绝对时间(13位Unix时间戳)或相对时间表达式
@@ -3802,7 +3802,7 @@ class ConsoleSharingConfig(AbstractModel):
3802
3802
 
3803
3803
  @property
3804
3804
  def VerifyCode(self):
3805
- """验证码
3805
+ """分享链接加密访问验证码。支持0-9和a-z(不区分大小写)在内的6个字符,可为空,代表免验证码访问
3806
3806
  注意:此字段可能返回 null,表示取不到有效值。
3807
3807
  :rtype: str
3808
3808
  """
@@ -7415,13 +7415,16 @@ class DescribeRedisTopKeyPrefixListRequest(AbstractModel):
7415
7415
  :type Date: str
7416
7416
  :param _Product: 服务产品类型,支持值包括 "redis" - 云数据库 Redis。
7417
7417
  :type Product: str
7418
- :param _Limit: 查询数目,默认为20,最大值为100
7418
+ :param _Limit: 查询数目,默认为20,最大值为500
7419
7419
  :type Limit: int
7420
+ :param _ShardIds: 分片ID数组。
7421
+ :type ShardIds: list of int
7420
7422
  """
7421
7423
  self._InstanceId = None
7422
7424
  self._Date = None
7423
7425
  self._Product = None
7424
7426
  self._Limit = None
7427
+ self._ShardIds = None
7425
7428
 
7426
7429
  @property
7427
7430
  def InstanceId(self):
@@ -7458,7 +7461,7 @@ class DescribeRedisTopKeyPrefixListRequest(AbstractModel):
7458
7461
 
7459
7462
  @property
7460
7463
  def Limit(self):
7461
- """查询数目,默认为20,最大值为100
7464
+ """查询数目,默认为20,最大值为500
7462
7465
  :rtype: int
7463
7466
  """
7464
7467
  return self._Limit
@@ -7467,12 +7470,24 @@ class DescribeRedisTopKeyPrefixListRequest(AbstractModel):
7467
7470
  def Limit(self, Limit):
7468
7471
  self._Limit = Limit
7469
7472
 
7473
+ @property
7474
+ def ShardIds(self):
7475
+ """分片ID数组。
7476
+ :rtype: list of int
7477
+ """
7478
+ return self._ShardIds
7479
+
7480
+ @ShardIds.setter
7481
+ def ShardIds(self, ShardIds):
7482
+ self._ShardIds = ShardIds
7483
+
7470
7484
 
7471
7485
  def _deserialize(self, params):
7472
7486
  self._InstanceId = params.get("InstanceId")
7473
7487
  self._Date = params.get("Date")
7474
7488
  self._Product = params.get("Product")
7475
7489
  self._Limit = params.get("Limit")
7490
+ self._ShardIds = params.get("ShardIds")
7476
7491
  memeber_set = set(params.keys())
7477
7492
  for name, value in vars(self).items():
7478
7493
  property_name = name[1:]
@@ -3086,95 +3086,46 @@ class Component(AbstractModel):
3086
3086
  <b>参数样例</b>:<br>`{"Children":["ComponentId_29","ComponentId_27","ComponentId_28","ComponentId_30"]}`
3087
3087
  <li><b>ChildrenComponents:</b> 关键字定位模式下,用来指定此签批控件的组合子控件 </li>
3088
3088
  ChildrenComponent结构体定义:
3089
- <table border="1">
3090
- <thead>
3091
- <tr>
3092
- <th>字段名称</th>
3093
- <th>类型</th>
3094
- <th>描述</th>
3095
- </tr>
3096
- </thead>
3097
- <tbody>
3098
- <tr>
3099
- <td>ComponentType</td>
3100
- <td>string</td>
3101
- <td>子控件类型-可选值:SIGN_SIGNATURE,SIGN_DATE,SIGN_SELECTOR,SIGN_MULTI_LINE_TEXT</td>
3102
- </tr>
3103
- <tr>
3104
- <td>ComponentName</td>
3105
- <td>string</td>
3106
- <td>子控件名称</td>
3107
- </tr>
3108
- <tr>
3109
- <td>Placeholder</td>
3110
- <td>string</td>
3111
- <td>子控件提示语</td>
3112
- </tr>
3113
- <tr>
3114
- <td>ComponentOffsetX</td>
3115
- <td>float</td>
3116
- <td>控件偏移位置X(相对于父控件(签批控件的ComponentX))</td>
3117
- </tr>
3118
- <tr>
3119
- <td>ComponentOffsetY</td>
3120
- <td>float</td>
3121
- <td>控件偏移位置Y 相对于父控件(签批控件的ComponentY))</td>
3122
- </tr>
3123
- <tr>
3124
- <td>ComponentWidth</td>
3125
- <td>float</td>
3126
- <td>控件宽</td>
3127
- </tr>
3128
- <tr>
3129
- <td>ComponentHeight</td>
3130
- <td>float</td>
3131
- <td>控件高</td>
3132
- </tr>
3133
- <tr>
3134
- <td>ComponentExtra</td>
3135
- <td>string</td>
3136
- <td>控件的附属信息,根据ComponentType设置</td>
3137
- </tr>
3138
- </tbody>
3139
- </table>
3089
+ <table border="1"> <thead> <tr> <th>字段名称</th> <th>类型</th> <th>描述</th> </tr> </thead> <tbody> <tr> <td>ComponentType</td> <td>string</td> <td>子控件类型-可选值:SIGN_SIGNATURE,SIGN_DATE,SIGN_SELECTOR,SIGN_MULTI_LINE_TEXT</td> </tr> <tr> <td>ComponentName</td> <td>string</td> <td>子控件名称</td> </tr> <tr> <td>Placeholder</td> <td>string</td> <td>子控件提示语</td> </tr> <tr> <td>ComponentOffsetX</td> <td>float</td> <td>控件偏移位置X(相对于父控件(签批控件的ComponentX))</td> </tr> <tr> <td>ComponentOffsetY</td> <td>float</td> <td>控件偏移位置Y 相对于父控件(签批控件的ComponentY))</td> </tr> <tr> <td>ComponentWidth</td> <td>float</td> <td>控件宽</td> </tr> <tr> <td>ComponentHeight</td> <td>float</td> <td>控件高</td> </tr> <tr> <td>ComponentExtra</td> <td>string</td> <td>控件的附属信息,根据ComponentType设置</td> </tr> </tbody> </table>
3140
3090
  <b>参数样例</b>:
3141
3091
 
3142
- ```json
3092
+ 输入:
3093
+ <pre>
3143
3094
  {
3144
- "ChildrenComponents": [
3095
+ ChildrenComponents: [
3145
3096
  {
3146
- "ComponentType": "SIGN_SIGNATURE",
3147
- "ComponentName": "个人签名",
3148
- "Placeholder": "请签名",
3149
- "ComponentOffsetX": 10,
3150
- "ComponentOffsetY": 30,
3151
- "ComponentWidth": 119,
3152
- "ComponentHeight": 43,
3153
- "ComponentExtra": "{\"ComponentTypeLimit\":[\"SYSTEM_ESIGN\"]}"
3097
+ ComponentType: SIGN_SIGNATURE,
3098
+ ComponentName: 个人签名,
3099
+ Placeholder: 请签名,
3100
+ ComponentOffsetX: 10,
3101
+ ComponentOffsetY: 30,
3102
+ ComponentWidth: 119,
3103
+ ComponentHeight: 43,
3104
+ ComponentExtra: {\ComponentTypeLimit\:[\SYSTEM_ESIGN\]}
3154
3105
  },
3155
3106
  {
3156
- "ComponentType": "SIGN_SELECTOR",
3157
- "ComponentName": "是否同意此协议",
3158
- "Placeholder": "",
3159
- "ComponentOffsetX": 50,
3160
- "ComponentOffsetY": 130,
3161
- "ComponentWidth": 120,
3162
- "ComponentHeight": 43,
3163
- "ComponentExtra": "{\"Values\":[\"同意\",\"不同意\",\"再想想\"],\"FontSize\":12,\"FontAlign\":\"Left\",\"Font\":\"黑体\",\"MultiSelect\":false}"
3107
+ ComponentType: SIGN_SELECTOR,
3108
+ ComponentName: 是否同意此协议,
3109
+ Placeholder: ,
3110
+ ComponentOffsetX: 50,
3111
+ ComponentOffsetY: 130,
3112
+ ComponentWidth: 120,
3113
+ ComponentHeight: 43,
3114
+ ComponentExtra: {\Values\:[\同意\,\不同意\,\再想想\],\FontSize\:12,\FontAlign\:\Left\,\Font\:\黑体\,\MultiSelect\:false}
3164
3115
  },
3165
3116
  {
3166
- "ComponentType": "SIGN_MULTI_LINE_TEXT",
3167
- "ComponentName": "批注附言",
3168
- "Placeholder": "",
3169
- "ComponentOffsetX": 150,
3170
- "ComponentOffsetY": 300,
3171
- "ComponentWidth": 200,
3172
- "ComponentHeight": 86,
3173
- "ComponentExtra": ""
3117
+ ComponentType: SIGN_MULTI_LINE_TEXT,
3118
+ ComponentName: 批注附言,
3119
+ Placeholder: ,
3120
+ ComponentOffsetX: 150,
3121
+ ComponentOffsetY: 300,
3122
+ ComponentWidth: 200,
3123
+ ComponentHeight: 86,
3124
+ ComponentExtra:
3174
3125
  }
3175
3126
  ]
3176
3127
  }
3177
- ```
3128
+ </pre>
3178
3129
  </ul>
3179
3130
 
3180
3131
 
@@ -3550,95 +3501,46 @@ ChildrenComponent结构体定义:
3550
3501
  <b>参数样例</b>:<br>`{"Children":["ComponentId_29","ComponentId_27","ComponentId_28","ComponentId_30"]}`
3551
3502
  <li><b>ChildrenComponents:</b> 关键字定位模式下,用来指定此签批控件的组合子控件 </li>
3552
3503
  ChildrenComponent结构体定义:
3553
- <table border="1">
3554
- <thead>
3555
- <tr>
3556
- <th>字段名称</th>
3557
- <th>类型</th>
3558
- <th>描述</th>
3559
- </tr>
3560
- </thead>
3561
- <tbody>
3562
- <tr>
3563
- <td>ComponentType</td>
3564
- <td>string</td>
3565
- <td>子控件类型-可选值:SIGN_SIGNATURE,SIGN_DATE,SIGN_SELECTOR,SIGN_MULTI_LINE_TEXT</td>
3566
- </tr>
3567
- <tr>
3568
- <td>ComponentName</td>
3569
- <td>string</td>
3570
- <td>子控件名称</td>
3571
- </tr>
3572
- <tr>
3573
- <td>Placeholder</td>
3574
- <td>string</td>
3575
- <td>子控件提示语</td>
3576
- </tr>
3577
- <tr>
3578
- <td>ComponentOffsetX</td>
3579
- <td>float</td>
3580
- <td>控件偏移位置X(相对于父控件(签批控件的ComponentX))</td>
3581
- </tr>
3582
- <tr>
3583
- <td>ComponentOffsetY</td>
3584
- <td>float</td>
3585
- <td>控件偏移位置Y 相对于父控件(签批控件的ComponentY))</td>
3586
- </tr>
3587
- <tr>
3588
- <td>ComponentWidth</td>
3589
- <td>float</td>
3590
- <td>控件宽</td>
3591
- </tr>
3592
- <tr>
3593
- <td>ComponentHeight</td>
3594
- <td>float</td>
3595
- <td>控件高</td>
3596
- </tr>
3597
- <tr>
3598
- <td>ComponentExtra</td>
3599
- <td>string</td>
3600
- <td>控件的附属信息,根据ComponentType设置</td>
3601
- </tr>
3602
- </tbody>
3603
- </table>
3504
+ <table border="1"> <thead> <tr> <th>字段名称</th> <th>类型</th> <th>描述</th> </tr> </thead> <tbody> <tr> <td>ComponentType</td> <td>string</td> <td>子控件类型-可选值:SIGN_SIGNATURE,SIGN_DATE,SIGN_SELECTOR,SIGN_MULTI_LINE_TEXT</td> </tr> <tr> <td>ComponentName</td> <td>string</td> <td>子控件名称</td> </tr> <tr> <td>Placeholder</td> <td>string</td> <td>子控件提示语</td> </tr> <tr> <td>ComponentOffsetX</td> <td>float</td> <td>控件偏移位置X(相对于父控件(签批控件的ComponentX))</td> </tr> <tr> <td>ComponentOffsetY</td> <td>float</td> <td>控件偏移位置Y 相对于父控件(签批控件的ComponentY))</td> </tr> <tr> <td>ComponentWidth</td> <td>float</td> <td>控件宽</td> </tr> <tr> <td>ComponentHeight</td> <td>float</td> <td>控件高</td> </tr> <tr> <td>ComponentExtra</td> <td>string</td> <td>控件的附属信息,根据ComponentType设置</td> </tr> </tbody> </table>
3604
3505
  <b>参数样例</b>:
3605
3506
 
3606
- ```json
3507
+ 输入:
3508
+ <pre>
3607
3509
  {
3608
- "ChildrenComponents": [
3510
+ ChildrenComponents: [
3609
3511
  {
3610
- "ComponentType": "SIGN_SIGNATURE",
3611
- "ComponentName": "个人签名",
3612
- "Placeholder": "请签名",
3613
- "ComponentOffsetX": 10,
3614
- "ComponentOffsetY": 30,
3615
- "ComponentWidth": 119,
3616
- "ComponentHeight": 43,
3617
- "ComponentExtra": "{\"ComponentTypeLimit\":[\"SYSTEM_ESIGN\"]}"
3512
+ ComponentType: SIGN_SIGNATURE,
3513
+ ComponentName: 个人签名,
3514
+ Placeholder: 请签名,
3515
+ ComponentOffsetX: 10,
3516
+ ComponentOffsetY: 30,
3517
+ ComponentWidth: 119,
3518
+ ComponentHeight: 43,
3519
+ ComponentExtra: {\ComponentTypeLimit\:[\SYSTEM_ESIGN\]}
3618
3520
  },
3619
3521
  {
3620
- "ComponentType": "SIGN_SELECTOR",
3621
- "ComponentName": "是否同意此协议",
3622
- "Placeholder": "",
3623
- "ComponentOffsetX": 50,
3624
- "ComponentOffsetY": 130,
3625
- "ComponentWidth": 120,
3626
- "ComponentHeight": 43,
3627
- "ComponentExtra": "{\"Values\":[\"同意\",\"不同意\",\"再想想\"],\"FontSize\":12,\"FontAlign\":\"Left\",\"Font\":\"黑体\",\"MultiSelect\":false}"
3522
+ ComponentType: SIGN_SELECTOR,
3523
+ ComponentName: 是否同意此协议,
3524
+ Placeholder: ,
3525
+ ComponentOffsetX: 50,
3526
+ ComponentOffsetY: 130,
3527
+ ComponentWidth: 120,
3528
+ ComponentHeight: 43,
3529
+ ComponentExtra: {\Values\:[\同意\,\不同意\,\再想想\],\FontSize\:12,\FontAlign\:\Left\,\Font\:\黑体\,\MultiSelect\:false}
3628
3530
  },
3629
3531
  {
3630
- "ComponentType": "SIGN_MULTI_LINE_TEXT",
3631
- "ComponentName": "批注附言",
3632
- "Placeholder": "",
3633
- "ComponentOffsetX": 150,
3634
- "ComponentOffsetY": 300,
3635
- "ComponentWidth": 200,
3636
- "ComponentHeight": 86,
3637
- "ComponentExtra": ""
3532
+ ComponentType: SIGN_MULTI_LINE_TEXT,
3533
+ ComponentName: 批注附言,
3534
+ Placeholder: ,
3535
+ ComponentOffsetX: 150,
3536
+ ComponentOffsetY: 300,
3537
+ ComponentWidth: 200,
3538
+ ComponentHeight: 86,
3539
+ ComponentExtra:
3638
3540
  }
3639
3541
  ]
3640
3542
  }
3641
- ```
3543
+ </pre>
3642
3544
  </ul>
3643
3545
 
3644
3546