tencentcloud-sdk-python 3.0.1392__py2.py3-none-any.whl → 3.0.1394__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tencentcloud/__init__.py +1 -1
- tencentcloud/cdb/v20170320/models.py +4 -0
- tencentcloud/cdc/v20201214/models.py +20 -0
- tencentcloud/cfs/v20190719/cfs_client.py +2 -6
- tencentcloud/cfs/v20190719/models.py +12 -14
- tencentcloud/clb/v20180317/clb_client.py +23 -0
- tencentcloud/clb/v20180317/models.py +186 -0
- tencentcloud/cme/v20191029/cme_client.py +0 -1
- tencentcloud/cme/v20191029/models.py +16 -0
- tencentcloud/dlc/v20210125/dlc_client.py +23 -0
- tencentcloud/dlc/v20210125/models.py +85 -0
- tencentcloud/domain/v20180808/models.py +2 -2
- tencentcloud/emr/v20190103/errorcodes.py +9 -0
- tencentcloud/emr/v20190103/models.py +45 -0
- tencentcloud/es/v20250101/es_client.py +0 -23
- tencentcloud/es/v20250101/models.py +1 -352
- tencentcloud/ess/v20201111/models.py +20 -10
- tencentcloud/essbasic/v20210526/models.py +4 -4
- tencentcloud/gs/v20191118/gs_client.py +122 -7
- tencentcloud/gs/v20191118/models.py +748 -6
- tencentcloud/hai/v20230812/models.py +8 -14
- tencentcloud/lke/v20231130/errorcodes.py +0 -6
- tencentcloud/lke/v20231130/lke_client.py +0 -26
- tencentcloud/lke/v20231130/models.py +0 -229
- tencentcloud/lkeap/v20240522/lkeap_client.py +1 -5
- tencentcloud/lowcode/v20210108/models.py +90 -0
- tencentcloud/monitor/v20180724/models.py +364 -2
- tencentcloud/monitor/v20180724/monitor_client.py +69 -0
- tencentcloud/mrs/v20200910/models.py +8 -0
- tencentcloud/mrs/v20200910/mrs_client.py +2 -0
- tencentcloud/oceanus/v20190422/models.py +17 -0
- tencentcloud/oceanus/v20190422/oceanus_client.py +1 -1
- tencentcloud/postgres/v20170312/models.py +0 -405
- tencentcloud/postgres/v20170312/postgres_client.py +0 -25
- tencentcloud/privatedns/v20201028/models.py +297 -0
- tencentcloud/privatedns/v20201028/privatedns_client.py +23 -0
- tencentcloud/pts/v20210728/models.py +30 -0
- tencentcloud/redis/v20180412/models.py +8 -8
- tencentcloud/tcss/v20201101/models.py +240 -0
- tencentcloud/tms/v20201229/models.py +4 -4
- tencentcloud/vm/v20210922/models.py +4 -16
- tencentcloud/vpc/v20170312/models.py +12 -6
- {tencentcloud_sdk_python-3.0.1392.dist-info → tencentcloud_sdk_python-3.0.1394.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1392.dist-info → tencentcloud_sdk_python-3.0.1394.dist-info}/RECORD +47 -47
- {tencentcloud_sdk_python-3.0.1392.dist-info → tencentcloud_sdk_python-3.0.1394.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1392.dist-info → tencentcloud_sdk_python-3.0.1394.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1392.dist-info → tencentcloud_sdk_python-3.0.1394.dist-info}/top_level.txt +0 -0
@@ -2165,355 +2165,4 @@ class WebContent(AbstractModel):
|
|
2165
2165
|
memeber_set.remove(property_name)
|
2166
2166
|
if len(memeber_set) > 0:
|
2167
2167
|
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
2168
|
-
|
2169
|
-
|
2170
|
-
|
2171
|
-
class WebPage(AbstractModel):
|
2172
|
-
"""网页搜索结果
|
2173
|
-
|
2174
|
-
"""
|
2175
|
-
|
2176
|
-
def __init__(self):
|
2177
|
-
r"""
|
2178
|
-
:param _Title: 标题
|
2179
|
-
:type Title: str
|
2180
|
-
:param _Url: url
|
2181
|
-
:type Url: str
|
2182
|
-
:param _Summary: 网页摘要
|
2183
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2184
|
-
:type Summary: str
|
2185
|
-
:param _Time: 网页收录时间。可能为空。
|
2186
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2187
|
-
:type Time: str
|
2188
|
-
:param _Content: Markdown 格式的网页正文
|
2189
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2190
|
-
:type Content: str
|
2191
|
-
"""
|
2192
|
-
self._Title = None
|
2193
|
-
self._Url = None
|
2194
|
-
self._Summary = None
|
2195
|
-
self._Time = None
|
2196
|
-
self._Content = None
|
2197
|
-
|
2198
|
-
@property
|
2199
|
-
def Title(self):
|
2200
|
-
"""标题
|
2201
|
-
:rtype: str
|
2202
|
-
"""
|
2203
|
-
return self._Title
|
2204
|
-
|
2205
|
-
@Title.setter
|
2206
|
-
def Title(self, Title):
|
2207
|
-
self._Title = Title
|
2208
|
-
|
2209
|
-
@property
|
2210
|
-
def Url(self):
|
2211
|
-
"""url
|
2212
|
-
:rtype: str
|
2213
|
-
"""
|
2214
|
-
return self._Url
|
2215
|
-
|
2216
|
-
@Url.setter
|
2217
|
-
def Url(self, Url):
|
2218
|
-
self._Url = Url
|
2219
|
-
|
2220
|
-
@property
|
2221
|
-
def Summary(self):
|
2222
|
-
"""网页摘要
|
2223
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2224
|
-
:rtype: str
|
2225
|
-
"""
|
2226
|
-
return self._Summary
|
2227
|
-
|
2228
|
-
@Summary.setter
|
2229
|
-
def Summary(self, Summary):
|
2230
|
-
self._Summary = Summary
|
2231
|
-
|
2232
|
-
@property
|
2233
|
-
def Time(self):
|
2234
|
-
"""网页收录时间。可能为空。
|
2235
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2236
|
-
:rtype: str
|
2237
|
-
"""
|
2238
|
-
return self._Time
|
2239
|
-
|
2240
|
-
@Time.setter
|
2241
|
-
def Time(self, Time):
|
2242
|
-
self._Time = Time
|
2243
|
-
|
2244
|
-
@property
|
2245
|
-
def Content(self):
|
2246
|
-
"""Markdown 格式的网页正文
|
2247
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2248
|
-
:rtype: str
|
2249
|
-
"""
|
2250
|
-
return self._Content
|
2251
|
-
|
2252
|
-
@Content.setter
|
2253
|
-
def Content(self, Content):
|
2254
|
-
self._Content = Content
|
2255
|
-
|
2256
|
-
|
2257
|
-
def _deserialize(self, params):
|
2258
|
-
self._Title = params.get("Title")
|
2259
|
-
self._Url = params.get("Url")
|
2260
|
-
self._Summary = params.get("Summary")
|
2261
|
-
self._Time = params.get("Time")
|
2262
|
-
self._Content = params.get("Content")
|
2263
|
-
memeber_set = set(params.keys())
|
2264
|
-
for name, value in vars(self).items():
|
2265
|
-
property_name = name[1:]
|
2266
|
-
if property_name in memeber_set:
|
2267
|
-
memeber_set.remove(property_name)
|
2268
|
-
if len(memeber_set) > 0:
|
2269
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
2270
|
-
|
2271
|
-
|
2272
|
-
|
2273
|
-
class WebSearchRequest(AbstractModel):
|
2274
|
-
"""WebSearch请求参数结构体
|
2275
|
-
|
2276
|
-
"""
|
2277
|
-
|
2278
|
-
def __init__(self):
|
2279
|
-
r"""
|
2280
|
-
:param _Query: 查询
|
2281
|
-
:type Query: str
|
2282
|
-
:param _Count: 搜索的网页数量,默认20
|
2283
|
-
:type Count: int
|
2284
|
-
:param _Site: 指定域名,gov.cn 可匹配 *.gov.cn的域名。
|
2285
|
-
:type Site: str
|
2286
|
-
:param _FetchContent: 是否获取返回网页全文,默认 false。
|
2287
|
-
:type FetchContent: bool
|
2288
|
-
:param _WhiteSites: 域名白名单,在不指定 Site 时,只保存匹配白名单域名的网页。
|
2289
|
-
:type WhiteSites: list of str
|
2290
|
-
:param _BlackSites: 域名黑名单,在不指定 Site 和白名单时,过滤黑名单中的域名。
|
2291
|
-
:type BlackSites: list of str
|
2292
|
-
:param _StartTime: 秒级时间戳,搜索网页的开始时间,默认不限制开始时间。
|
2293
|
-
:type StartTime: int
|
2294
|
-
:param _EndTime: 秒级时间戳,搜索网页的结束时间,默认为现在。
|
2295
|
-
:type EndTime: int
|
2296
|
-
:param _SearchEngine: 指定搜索引擎,可选混合搜索 mixed,或 bing, baidu, sogou, 默认为 sogou
|
2297
|
-
:type SearchEngine: str
|
2298
|
-
"""
|
2299
|
-
self._Query = None
|
2300
|
-
self._Count = None
|
2301
|
-
self._Site = None
|
2302
|
-
self._FetchContent = None
|
2303
|
-
self._WhiteSites = None
|
2304
|
-
self._BlackSites = None
|
2305
|
-
self._StartTime = None
|
2306
|
-
self._EndTime = None
|
2307
|
-
self._SearchEngine = None
|
2308
|
-
|
2309
|
-
@property
|
2310
|
-
def Query(self):
|
2311
|
-
"""查询
|
2312
|
-
:rtype: str
|
2313
|
-
"""
|
2314
|
-
return self._Query
|
2315
|
-
|
2316
|
-
@Query.setter
|
2317
|
-
def Query(self, Query):
|
2318
|
-
self._Query = Query
|
2319
|
-
|
2320
|
-
@property
|
2321
|
-
def Count(self):
|
2322
|
-
"""搜索的网页数量,默认20
|
2323
|
-
:rtype: int
|
2324
|
-
"""
|
2325
|
-
return self._Count
|
2326
|
-
|
2327
|
-
@Count.setter
|
2328
|
-
def Count(self, Count):
|
2329
|
-
self._Count = Count
|
2330
|
-
|
2331
|
-
@property
|
2332
|
-
def Site(self):
|
2333
|
-
"""指定域名,gov.cn 可匹配 *.gov.cn的域名。
|
2334
|
-
:rtype: str
|
2335
|
-
"""
|
2336
|
-
return self._Site
|
2337
|
-
|
2338
|
-
@Site.setter
|
2339
|
-
def Site(self, Site):
|
2340
|
-
self._Site = Site
|
2341
|
-
|
2342
|
-
@property
|
2343
|
-
def FetchContent(self):
|
2344
|
-
"""是否获取返回网页全文,默认 false。
|
2345
|
-
:rtype: bool
|
2346
|
-
"""
|
2347
|
-
return self._FetchContent
|
2348
|
-
|
2349
|
-
@FetchContent.setter
|
2350
|
-
def FetchContent(self, FetchContent):
|
2351
|
-
self._FetchContent = FetchContent
|
2352
|
-
|
2353
|
-
@property
|
2354
|
-
def WhiteSites(self):
|
2355
|
-
"""域名白名单,在不指定 Site 时,只保存匹配白名单域名的网页。
|
2356
|
-
:rtype: list of str
|
2357
|
-
"""
|
2358
|
-
return self._WhiteSites
|
2359
|
-
|
2360
|
-
@WhiteSites.setter
|
2361
|
-
def WhiteSites(self, WhiteSites):
|
2362
|
-
self._WhiteSites = WhiteSites
|
2363
|
-
|
2364
|
-
@property
|
2365
|
-
def BlackSites(self):
|
2366
|
-
"""域名黑名单,在不指定 Site 和白名单时,过滤黑名单中的域名。
|
2367
|
-
:rtype: list of str
|
2368
|
-
"""
|
2369
|
-
return self._BlackSites
|
2370
|
-
|
2371
|
-
@BlackSites.setter
|
2372
|
-
def BlackSites(self, BlackSites):
|
2373
|
-
self._BlackSites = BlackSites
|
2374
|
-
|
2375
|
-
@property
|
2376
|
-
def StartTime(self):
|
2377
|
-
"""秒级时间戳,搜索网页的开始时间,默认不限制开始时间。
|
2378
|
-
:rtype: int
|
2379
|
-
"""
|
2380
|
-
return self._StartTime
|
2381
|
-
|
2382
|
-
@StartTime.setter
|
2383
|
-
def StartTime(self, StartTime):
|
2384
|
-
self._StartTime = StartTime
|
2385
|
-
|
2386
|
-
@property
|
2387
|
-
def EndTime(self):
|
2388
|
-
"""秒级时间戳,搜索网页的结束时间,默认为现在。
|
2389
|
-
:rtype: int
|
2390
|
-
"""
|
2391
|
-
return self._EndTime
|
2392
|
-
|
2393
|
-
@EndTime.setter
|
2394
|
-
def EndTime(self, EndTime):
|
2395
|
-
self._EndTime = EndTime
|
2396
|
-
|
2397
|
-
@property
|
2398
|
-
def SearchEngine(self):
|
2399
|
-
"""指定搜索引擎,可选混合搜索 mixed,或 bing, baidu, sogou, 默认为 sogou
|
2400
|
-
:rtype: str
|
2401
|
-
"""
|
2402
|
-
return self._SearchEngine
|
2403
|
-
|
2404
|
-
@SearchEngine.setter
|
2405
|
-
def SearchEngine(self, SearchEngine):
|
2406
|
-
self._SearchEngine = SearchEngine
|
2407
|
-
|
2408
|
-
|
2409
|
-
def _deserialize(self, params):
|
2410
|
-
self._Query = params.get("Query")
|
2411
|
-
self._Count = params.get("Count")
|
2412
|
-
self._Site = params.get("Site")
|
2413
|
-
self._FetchContent = params.get("FetchContent")
|
2414
|
-
self._WhiteSites = params.get("WhiteSites")
|
2415
|
-
self._BlackSites = params.get("BlackSites")
|
2416
|
-
self._StartTime = params.get("StartTime")
|
2417
|
-
self._EndTime = params.get("EndTime")
|
2418
|
-
self._SearchEngine = params.get("SearchEngine")
|
2419
|
-
memeber_set = set(params.keys())
|
2420
|
-
for name, value in vars(self).items():
|
2421
|
-
property_name = name[1:]
|
2422
|
-
if property_name in memeber_set:
|
2423
|
-
memeber_set.remove(property_name)
|
2424
|
-
if len(memeber_set) > 0:
|
2425
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
2426
|
-
|
2427
|
-
|
2428
|
-
|
2429
|
-
class WebSearchResponse(AbstractModel):
|
2430
|
-
"""WebSearch返回参数结构体
|
2431
|
-
|
2432
|
-
"""
|
2433
|
-
|
2434
|
-
def __init__(self):
|
2435
|
-
r"""
|
2436
|
-
:param _Query: 查询
|
2437
|
-
:type Query: str
|
2438
|
-
:param _Status: 响应状态
|
2439
|
-
:type Status: str
|
2440
|
-
:param _SearchEngine: 执行搜索的引擎
|
2441
|
-
:type SearchEngine: str
|
2442
|
-
:param _Results: 搜索结果
|
2443
|
-
:type Results: list of WebPage
|
2444
|
-
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2445
|
-
:type RequestId: str
|
2446
|
-
"""
|
2447
|
-
self._Query = None
|
2448
|
-
self._Status = None
|
2449
|
-
self._SearchEngine = None
|
2450
|
-
self._Results = None
|
2451
|
-
self._RequestId = None
|
2452
|
-
|
2453
|
-
@property
|
2454
|
-
def Query(self):
|
2455
|
-
"""查询
|
2456
|
-
:rtype: str
|
2457
|
-
"""
|
2458
|
-
return self._Query
|
2459
|
-
|
2460
|
-
@Query.setter
|
2461
|
-
def Query(self, Query):
|
2462
|
-
self._Query = Query
|
2463
|
-
|
2464
|
-
@property
|
2465
|
-
def Status(self):
|
2466
|
-
"""响应状态
|
2467
|
-
:rtype: str
|
2468
|
-
"""
|
2469
|
-
return self._Status
|
2470
|
-
|
2471
|
-
@Status.setter
|
2472
|
-
def Status(self, Status):
|
2473
|
-
self._Status = Status
|
2474
|
-
|
2475
|
-
@property
|
2476
|
-
def SearchEngine(self):
|
2477
|
-
"""执行搜索的引擎
|
2478
|
-
:rtype: str
|
2479
|
-
"""
|
2480
|
-
return self._SearchEngine
|
2481
|
-
|
2482
|
-
@SearchEngine.setter
|
2483
|
-
def SearchEngine(self, SearchEngine):
|
2484
|
-
self._SearchEngine = SearchEngine
|
2485
|
-
|
2486
|
-
@property
|
2487
|
-
def Results(self):
|
2488
|
-
"""搜索结果
|
2489
|
-
:rtype: list of WebPage
|
2490
|
-
"""
|
2491
|
-
return self._Results
|
2492
|
-
|
2493
|
-
@Results.setter
|
2494
|
-
def Results(self, Results):
|
2495
|
-
self._Results = Results
|
2496
|
-
|
2497
|
-
@property
|
2498
|
-
def RequestId(self):
|
2499
|
-
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2500
|
-
:rtype: str
|
2501
|
-
"""
|
2502
|
-
return self._RequestId
|
2503
|
-
|
2504
|
-
@RequestId.setter
|
2505
|
-
def RequestId(self, RequestId):
|
2506
|
-
self._RequestId = RequestId
|
2507
|
-
|
2508
|
-
|
2509
|
-
def _deserialize(self, params):
|
2510
|
-
self._Query = params.get("Query")
|
2511
|
-
self._Status = params.get("Status")
|
2512
|
-
self._SearchEngine = params.get("SearchEngine")
|
2513
|
-
if params.get("Results") is not None:
|
2514
|
-
self._Results = []
|
2515
|
-
for item in params.get("Results"):
|
2516
|
-
obj = WebPage()
|
2517
|
-
obj._deserialize(item)
|
2518
|
-
self._Results.append(obj)
|
2519
|
-
self._RequestId = params.get("RequestId")
|
2168
|
+
|
@@ -3178,8 +3178,8 @@ ChildrenComponent结构体定义:
|
|
3178
3178
|
<li>true:锁定控件值,在页面编辑控件值</li></ul>
|
3179
3179
|
:type LockComponentValue: bool
|
3180
3180
|
:param _ForbidMoveAndDelete: **web嵌入发起合同场景下**,是否禁止移动和删除填写和签署控件
|
3181
|
-
<ul><li> <b>false(默认)</b>
|
3182
|
-
<li> <b>true</b> :
|
3181
|
+
<ul><li> <b>false(默认)</b> :可以移动和删除控件</li>
|
3182
|
+
<li> <b>true</b> : 禁止移动和删除控件</li></ul>
|
3183
3183
|
:type ForbidMoveAndDelete: bool
|
3184
3184
|
:param _ComponentDateFontSize: <font color="red">【暂未使用】</font>日期签署控件的字号,默认为 12
|
3185
3185
|
:type ComponentDateFontSize: int
|
@@ -3684,8 +3684,8 @@ ChildrenComponent结构体定义:
|
|
3684
3684
|
@property
|
3685
3685
|
def ForbidMoveAndDelete(self):
|
3686
3686
|
"""**web嵌入发起合同场景下**,是否禁止移动和删除填写和签署控件
|
3687
|
-
<ul><li> <b>false(默认)</b>
|
3688
|
-
<li> <b>true</b> :
|
3687
|
+
<ul><li> <b>false(默认)</b> :可以移动和删除控件</li>
|
3688
|
+
<li> <b>true</b> : 禁止移动和删除控件</li></ul>
|
3689
3689
|
:rtype: bool
|
3690
3690
|
"""
|
3691
3691
|
return self._ForbidMoveAndDelete
|
@@ -8996,13 +8996,16 @@ class CreateFlowOption(AbstractModel):
|
|
8996
8996
|
:param _ForbidEditFlowProperties: 禁止设置设置签署流程属性 (顺序、合同签署认证方式等),若为true则在发起流程的可嵌入页面隐藏签署流程设置面板
|
8997
8997
|
|
8998
8998
|
:type ForbidEditFlowProperties: bool
|
8999
|
-
:param _HideComponentTypes: 在发起流程的可嵌入页面要隐藏的控件列表,和 ShowComponentTypes 参数
|
8999
|
+
:param _HideComponentTypes: 在发起流程的可嵌入页面要隐藏的控件列表,和 ShowComponentTypes 参数 只能二选一使用(注:
|
9000
|
+
<font color='red'>空数组代表未指定</font>),具体的控件类型如下
|
9001
|
+
|
9000
9002
|
<ul><li>SIGN_SIGNATURE : 个人签名/印章</li>
|
9001
9003
|
<li>SIGN_SEAL : 企业印章</li>
|
9002
9004
|
<li>SIGN_PAGING_SEAL : 骑缝章</li>
|
9003
9005
|
<li>SIGN_LEGAL_PERSON_SEAL : 法定代表人章</li>
|
9004
9006
|
<li>SIGN_APPROVE : 签批</li>
|
9005
9007
|
<li>SIGN_OPINION : 签署意见</li>
|
9008
|
+
<li>SIGN_PAGING_SIGNATURE : 手写签名骑缝控件</li>
|
9006
9009
|
<li>BUSI-FULL-NAME : 企业全称</li>
|
9007
9010
|
<li>BUSI-CREDIT-CODE : 统一社会信用代码</li>
|
9008
9011
|
<li>BUSI-LEGAL-NAME : 法人/经营者姓名</li>
|
@@ -9024,13 +9027,15 @@ class CreateFlowOption(AbstractModel):
|
|
9024
9027
|
<li>GENDER : 性别</li>
|
9025
9028
|
<li>DISTRICT : 省市区</li></ul>
|
9026
9029
|
:type HideComponentTypes: list of str
|
9027
|
-
:param _ShowComponentTypes: 在发起流程的可嵌入页面要显示的控件列表,和 HideComponentTypes 参数
|
9030
|
+
:param _ShowComponentTypes: 在发起流程的可嵌入页面要显示的控件列表,和 HideComponentTypes 参数 只能二选一使用(注:
|
9031
|
+
<font color='red'>空数组代表未指定</font>),具体的控件类型如下
|
9028
9032
|
<ul><li>SIGN_SIGNATURE : 个人签名/印章</li>
|
9029
9033
|
<li>SIGN_SEAL : 企业印章</li>
|
9030
9034
|
<li>SIGN_PAGING_SEAL : 骑缝章</li>
|
9031
9035
|
<li>SIGN_LEGAL_PERSON_SEAL : 法定代表人章</li>
|
9032
9036
|
<li>SIGN_APPROVE : 签批</li>
|
9033
9037
|
<li>SIGN_OPINION : 签署意见</li>
|
9038
|
+
<li>SIGN_PAGING_SIGNATURE : 手写签名骑缝控件</li>
|
9034
9039
|
<li>BUSI-FULL-NAME : 企业全称</li>
|
9035
9040
|
<li>BUSI-CREDIT-CODE : 统一社会信用代码</li>
|
9036
9041
|
<li>BUSI-LEGAL-NAME : 法人/经营者姓名</li>
|
@@ -9243,13 +9248,16 @@ class CreateFlowOption(AbstractModel):
|
|
9243
9248
|
|
9244
9249
|
@property
|
9245
9250
|
def HideComponentTypes(self):
|
9246
|
-
"""在发起流程的可嵌入页面要隐藏的控件列表,和 ShowComponentTypes 参数
|
9251
|
+
"""在发起流程的可嵌入页面要隐藏的控件列表,和 ShowComponentTypes 参数 只能二选一使用(注:
|
9252
|
+
<font color='red'>空数组代表未指定</font>),具体的控件类型如下
|
9253
|
+
|
9247
9254
|
<ul><li>SIGN_SIGNATURE : 个人签名/印章</li>
|
9248
9255
|
<li>SIGN_SEAL : 企业印章</li>
|
9249
9256
|
<li>SIGN_PAGING_SEAL : 骑缝章</li>
|
9250
9257
|
<li>SIGN_LEGAL_PERSON_SEAL : 法定代表人章</li>
|
9251
9258
|
<li>SIGN_APPROVE : 签批</li>
|
9252
9259
|
<li>SIGN_OPINION : 签署意见</li>
|
9260
|
+
<li>SIGN_PAGING_SIGNATURE : 手写签名骑缝控件</li>
|
9253
9261
|
<li>BUSI-FULL-NAME : 企业全称</li>
|
9254
9262
|
<li>BUSI-CREDIT-CODE : 统一社会信用代码</li>
|
9255
9263
|
<li>BUSI-LEGAL-NAME : 法人/经营者姓名</li>
|
@@ -9280,13 +9288,15 @@ class CreateFlowOption(AbstractModel):
|
|
9280
9288
|
|
9281
9289
|
@property
|
9282
9290
|
def ShowComponentTypes(self):
|
9283
|
-
"""在发起流程的可嵌入页面要显示的控件列表,和 HideComponentTypes 参数
|
9291
|
+
"""在发起流程的可嵌入页面要显示的控件列表,和 HideComponentTypes 参数 只能二选一使用(注:
|
9292
|
+
<font color='red'>空数组代表未指定</font>),具体的控件类型如下
|
9284
9293
|
<ul><li>SIGN_SIGNATURE : 个人签名/印章</li>
|
9285
9294
|
<li>SIGN_SEAL : 企业印章</li>
|
9286
9295
|
<li>SIGN_PAGING_SEAL : 骑缝章</li>
|
9287
9296
|
<li>SIGN_LEGAL_PERSON_SEAL : 法定代表人章</li>
|
9288
9297
|
<li>SIGN_APPROVE : 签批</li>
|
9289
9298
|
<li>SIGN_OPINION : 签署意见</li>
|
9299
|
+
<li>SIGN_PAGING_SIGNATURE : 手写签名骑缝控件</li>
|
9290
9300
|
<li>BUSI-FULL-NAME : 企业全称</li>
|
9291
9301
|
<li>BUSI-CREDIT-CODE : 统一社会信用代码</li>
|
9292
9302
|
<li>BUSI-LEGAL-NAME : 法人/经营者姓名</li>
|
@@ -25650,7 +25660,7 @@ class FlowDetailInfo(AbstractModel):
|
|
25650
25660
|
:type FlowName: str
|
25651
25661
|
:param _FlowType: 合同流程的类别分类(如销售合同/入职合同等)。
|
25652
25662
|
:type FlowType: str
|
25653
|
-
:param _FlowStatus: 合同流程当前的签署状态, 会存在下列的状态值 <ul><li> **0** : 未开启流程(合同中不存在填写环节)</li> <li> **1** : 待签署</li> <li> **2** : 部分签署</li> <li> **3** : 已拒签</li> <li> **4** : 已签署</li> <li> **5** : 已过期</li> <li> **6** : 已撤销</li> <li> **7** : 未开启流程(合同中存在填写环节)</li> <li> **8** : 等待填写</li> <li> **9** : 部分填写</li> <li> **10** : 已拒填</li> <li> **21** : 已解除</li></ul>
|
25663
|
+
:param _FlowStatus: 合同流程当前的签署状态, 会存在下列的状态值 <ul><li> **0** : 未开启流程(合同中不存在填写环节)</li> <li> **1** : 待签署</li> <li> **2** : 部分签署</li> <li> **3** : 已拒签</li> <li> **4** : 已签署</li> <li> **5** : 已过期</li> <li> **6** : 已撤销</li> <li> **7** : 未开启流程(合同中存在填写环节)</li> <li> **8** : 等待填写</li> <li> **9** : 部分填写</li> <li> **10** : 已拒填</li> <li> **16** : 已失效(可能因为参与方修改姓名等原因)</li> <li> **21** : 已解除</li></ul>
|
25654
25664
|
:type FlowStatus: int
|
25655
25665
|
:param _FlowMessage: 当合同流程状态为已拒签(即 FlowStatus=3)或已撤销(即 FlowStatus=6)时,此字段 FlowMessage 为拒签或撤销原因。
|
25656
25666
|
:type FlowMessage: str
|
@@ -25711,7 +25721,7 @@ class FlowDetailInfo(AbstractModel):
|
|
25711
25721
|
|
25712
25722
|
@property
|
25713
25723
|
def FlowStatus(self):
|
25714
|
-
"""合同流程当前的签署状态, 会存在下列的状态值 <ul><li> **0** : 未开启流程(合同中不存在填写环节)</li> <li> **1** : 待签署</li> <li> **2** : 部分签署</li> <li> **3** : 已拒签</li> <li> **4** : 已签署</li> <li> **5** : 已过期</li> <li> **6** : 已撤销</li> <li> **7** : 未开启流程(合同中存在填写环节)</li> <li> **8** : 等待填写</li> <li> **9** : 部分填写</li> <li> **10** : 已拒填</li> <li> **21** : 已解除</li></ul>
|
25724
|
+
"""合同流程当前的签署状态, 会存在下列的状态值 <ul><li> **0** : 未开启流程(合同中不存在填写环节)</li> <li> **1** : 待签署</li> <li> **2** : 部分签署</li> <li> **3** : 已拒签</li> <li> **4** : 已签署</li> <li> **5** : 已过期</li> <li> **6** : 已撤销</li> <li> **7** : 未开启流程(合同中存在填写环节)</li> <li> **8** : 等待填写</li> <li> **9** : 部分填写</li> <li> **10** : 已拒填</li> <li> **16** : 已失效(可能因为参与方修改姓名等原因)</li> <li> **21** : 已解除</li></ul>
|
25715
25725
|
:rtype: int
|
25716
25726
|
"""
|
25717
25727
|
return self._FlowStatus
|
@@ -12767,8 +12767,8 @@ ChildrenComponent结构体定义:
|
|
12767
12767
|
<li>true:锁定控件值,在页面编辑控件值</li></ul>
|
12768
12768
|
:type LockComponentValue: bool
|
12769
12769
|
:param _ForbidMoveAndDelete: **web嵌入发起合同场景下**,是否禁止移动和删除填写和签署控件
|
12770
|
-
<ul><li> <b>false(默认)</b>
|
12771
|
-
<li> <b>true</b> :
|
12770
|
+
<ul><li> <b>false(默认)</b> :可以移动和删除控件</li>
|
12771
|
+
<li> <b>true</b> : 禁止移动和删除控件</li></ul>
|
12772
12772
|
:type ForbidMoveAndDelete: bool
|
12773
12773
|
"""
|
12774
12774
|
self._ComponentId = None
|
@@ -13307,8 +13307,8 @@ ChildrenComponent结构体定义:
|
|
13307
13307
|
@property
|
13308
13308
|
def ForbidMoveAndDelete(self):
|
13309
13309
|
"""**web嵌入发起合同场景下**,是否禁止移动和删除填写和签署控件
|
13310
|
-
<ul><li> <b>false(默认)</b>
|
13311
|
-
<li> <b>true</b> :
|
13310
|
+
<ul><li> <b>false(默认)</b> :可以移动和删除控件</li>
|
13311
|
+
<li> <b>true</b> : 禁止移动和删除控件</li></ul>
|
13312
13312
|
:rtype: bool
|
13313
13313
|
"""
|
13314
13314
|
return self._ForbidMoveAndDelete
|