tccli 3.0.1081.1__py2.py3-none-any.whl → 3.0.1083.1__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.
tccli/__init__.py CHANGED
@@ -1 +1 @@
1
- __version__ = '3.0.1081.1'
1
+ __version__ = '3.0.1083.1'
@@ -44,6 +44,7 @@ tccli ess CreatePrepareFlow --cli-unfold-argument \
44
44
  --Approvers.0.Required True \
45
45
  --Approvers.0.ApproverOption.NoRefuse True \
46
46
  --Approvers.0.ApproverOption.NoTransfer True \
47
+ --Approvers.0.ApproverOption.CanEditApprover True \
47
48
  --Approvers.0.ApproverVerifyTypes 1 2 \
48
49
  --Approvers.0.ApproverSignTypes 1 2 \
49
50
  --Approvers.0.Components.0.ComponentPosX 160 \
@@ -139,6 +140,7 @@ tccli ess CreatePrepareFlow --cli-unfold-argument \
139
140
  --Approvers.0.Required True \
140
141
  --Approvers.0.ApproverOption.NoRefuse True \
141
142
  --Approvers.0.ApproverOption.NoTransfer True \
143
+ --Approvers.0.ApproverOption.CanEditApprover True \
142
144
  --Approvers.0.ApproverVerifyTypes 1 2 \
143
145
  --Approvers.0.ApproverSignTypes 1 2 \
144
146
  --Approvers.0.Components.0.ComponentPosX 160 \
@@ -237,6 +239,7 @@ tccli ess CreatePrepareFlow --cli-unfold-argument \
237
239
  --Approvers.0.RecipientId yDwXXxxxxxxxxxxxxxxOZbdgN6 \
238
240
  --Approvers.0.ApproverOption.NoRefuse True \
239
241
  --Approvers.0.ApproverOption.NoTransfer True \
242
+ --Approvers.0.ApproverOption.CanEditApprover True \
240
243
  --Approvers.0.ApproverVerifyTypes 1 2 \
241
244
  --Approvers.0.ApproverSignTypes 1 2 \
242
245
  --Approvers.0.IsFullText True \
@@ -295,6 +298,7 @@ tccli ess CreatePrepareFlow --cli-unfold-argument \
295
298
  --Approvers.0.RecipientId yDwXXxxxxxxxxxxxxxxOZbdgN6 \
296
299
  --Approvers.0.ApproverOption.NoRefuse True \
297
300
  --Approvers.0.ApproverOption.NoTransfer True \
301
+ --Approvers.0.ApproverOption.CanEditApprover True \
298
302
  --Approvers.0.ApproverVerifyTypes 1 2 \
299
303
  --Approvers.0.ApproverSignTypes 1 2 \
300
304
  --Approvers.0.IsFullText True \
@@ -1,12 +1,12 @@
1
1
  **Example 1: 创建项目**
2
2
 
3
-
3
+ 创建项目
4
4
 
5
5
  Input:
6
6
 
7
7
  ```
8
8
  tccli tag AddProject --cli-unfold-argument \
9
- --ProjectName tp2
9
+ --ProjectName 测试项目
10
10
  ```
11
11
 
12
12
  Output:
@@ -14,8 +14,8 @@ Output:
14
14
  {
15
15
  "Response": {
16
16
  "IsNew": 1,
17
- "ProjectId": 1024690,
18
- "RequestId": "caf5c6ba-b21b-4769-b0bb-0b3090e0c282"
17
+ "ProjectId": 1001,
18
+ "RequestId": "7f831036-30b5-4972-a729-e6851a15d345"
19
19
  }
20
20
  }
21
21
  ```
@@ -1,20 +1,20 @@
1
1
  **Example 1: 修改项目名称**
2
2
 
3
-
3
+ 修改项目名称
4
4
 
5
5
  Input:
6
6
 
7
7
  ```
8
8
  tccli tag UpdateProject --cli-unfold-argument \
9
- --ProjectId 1024690 \
10
- --ProjectName test
9
+ --ProjectId 1001 \
10
+ --ProjectName 项目名称
11
11
  ```
12
12
 
13
13
  Output:
14
14
  ```
15
15
  {
16
16
  "Response": {
17
- "RequestId": "f26b281e-0cbc-40ab-a38b-e9e62ef6fd24"
17
+ "RequestId": "87ccfc15-4c5a-4f0a-b5f1-eae50aad9e9a"
18
18
  }
19
19
  }
20
20
  ```
@@ -0,0 +1,21 @@
1
+ **Example 1: 查询页面录制状态**
2
+
3
+
4
+
5
+ Input:
6
+
7
+ ```
8
+ tccli trtc DescribeWebRecord --cli-unfold-argument \
9
+ --TaskId xxx
10
+ ```
11
+
12
+ Output:
13
+ ```
14
+ {
15
+ "Response": {
16
+ "Status": 1,
17
+ "RequestId": "abc"
18
+ }
19
+ }
20
+ ```
21
+
@@ -0,0 +1,31 @@
1
+ **Example 1: 启动一个页面录制任务**
2
+
3
+
4
+
5
+ Input:
6
+
7
+ ```
8
+ tccli trtc StartWebRecord --cli-unfold-argument \
9
+ --RecordUrl https://web-record-xxxxx.cos.ap-xxx.myqcloud.com/xxxx/xxx.mp4 \
10
+ --StorageParams.CloudStorage.Vendor 0 \
11
+ --StorageParams.CloudStorage.Bucket webrecord-1234589 \
12
+ --StorageParams.CloudStorage.Region ap-chengdu \
13
+ --StorageParams.CloudStorage.AccessKey AKxxxxxx \
14
+ --StorageParams.CloudStorage.SecretKey Idxxxxxx \
15
+ --StorageParams.CloudStorage.FileNamePrefix record video \
16
+ --MaxDurationLimit 3600 \
17
+ --WebRecordVideoParams.Width 1280 \
18
+ --WebRecordVideoParams.Height 720 \
19
+ --WebRecordVideoParams.Format mp4
20
+ ```
21
+
22
+ Output:
23
+ ```
24
+ {
25
+ "Response": {
26
+ "TaskId": "abc",
27
+ "RequestId": "abc"
28
+ }
29
+ }
30
+ ```
31
+
@@ -0,0 +1,20 @@
1
+ **Example 1: 停止页面录制任务**
2
+
3
+
4
+
5
+ Input:
6
+
7
+ ```
8
+ tccli trtc StopWebRecord --cli-unfold-argument \
9
+ --TaskId xxxx
10
+ ```
11
+
12
+ Output:
13
+ ```
14
+ {
15
+ "Response": {
16
+ "RequestId": "abc"
17
+ }
18
+ }
19
+ ```
20
+
@@ -4219,7 +4219,7 @@
4219
4219
  },
4220
4220
  {
4221
4221
  "disabled": false,
4222
- "document": "IP版本号,支持IPv4和IPv6,默认为IPv4。",
4222
+ "document": "IP版本号,仅支持IPv4。",
4223
4223
  "example": "xxxx",
4224
4224
  "member": "string",
4225
4225
  "name": "IpVersion",
@@ -7556,7 +7556,7 @@
7556
7556
  },
7557
7557
  {
7558
7558
  "disabled": false,
7559
- "document": "性能容量型规格\n注意:此字段可能返回 null,表示取不到有效值。",
7559
+ "document": "性能容量型规格。<ul><li> clb.c2.medium:标准型规格 </li><li> clb.c3.small:高阶型1规格 </li><li> clb.c3.medium:高阶型2规格 </li><li> clb.c4.small:超强型1规格 </li><li> clb.c4.medium:超强型2规格 </li><li> clb.c4.large:超强型3规格 </li><li> clb.c4.xlarge:超强型4规格 </li><li>null:共享型实例</li></ul>\n注意:此字段可能返回 null,表示取不到有效值。",
7560
7560
  "example": " null",
7561
7561
  "member": "string",
7562
7562
  "name": "SlaType",
@@ -5662,7 +5662,7 @@
5662
5662
  "example": "x x",
5663
5663
  "member": "string",
5664
5664
  "name": "Quuid",
5665
- "required": false,
5665
+ "output_required": true,
5666
5666
  "type": "string",
5667
5667
  "value_allowed_null": false
5668
5668
  },
@@ -5672,7 +5672,7 @@
5672
5672
  "example": "xx",
5673
5673
  "member": "string",
5674
5674
  "name": "Uuid",
5675
- "required": false,
5675
+ "output_required": true,
5676
5676
  "type": "string",
5677
5677
  "value_allowed_null": false
5678
5678
  },
@@ -5682,7 +5682,7 @@
5682
5682
  "example": "xx",
5683
5683
  "member": "string",
5684
5684
  "name": "MachineIp",
5685
- "required": false,
5685
+ "output_required": true,
5686
5686
  "type": "string",
5687
5687
  "value_allowed_null": false
5688
5688
  },
@@ -5692,7 +5692,7 @@
5692
5692
  "example": "xx",
5693
5693
  "member": "string",
5694
5694
  "name": "MachineName",
5695
- "required": false,
5695
+ "output_required": true,
5696
5696
  "type": "string",
5697
5697
  "value_allowed_null": false
5698
5698
  },
@@ -5702,7 +5702,7 @@
5702
5702
  "example": "xx",
5703
5703
  "member": "string",
5704
5704
  "name": "OsInfo",
5705
- "required": false,
5705
+ "output_required": true,
5706
5706
  "type": "string",
5707
5707
  "value_allowed_null": false
5708
5708
  },
@@ -5712,7 +5712,7 @@
5712
5712
  "example": "xx",
5713
5713
  "member": "string",
5714
5714
  "name": "Cpu",
5715
- "required": false,
5715
+ "output_required": true,
5716
5716
  "type": "string",
5717
5717
  "value_allowed_null": false
5718
5718
  },
@@ -5722,7 +5722,7 @@
5722
5722
  "example": "1",
5723
5723
  "member": "uint64",
5724
5724
  "name": "MemSize",
5725
- "required": false,
5725
+ "output_required": true,
5726
5726
  "type": "int",
5727
5727
  "value_allowed_null": false
5728
5728
  },
@@ -5732,7 +5732,7 @@
5732
5732
  "example": "xx",
5733
5733
  "member": "string",
5734
5734
  "name": "MemLoad",
5735
- "required": false,
5735
+ "output_required": true,
5736
5736
  "type": "string",
5737
5737
  "value_allowed_null": false
5738
5738
  },
@@ -5742,7 +5742,7 @@
5742
5742
  "example": "1",
5743
5743
  "member": "uint64",
5744
5744
  "name": "DiskSize",
5745
- "required": false,
5745
+ "output_required": true,
5746
5746
  "type": "int",
5747
5747
  "value_allowed_null": false
5748
5748
  },
@@ -5752,7 +5752,7 @@
5752
5752
  "example": "xx",
5753
5753
  "member": "string",
5754
5754
  "name": "DiskLoad",
5755
- "required": false,
5755
+ "output_required": true,
5756
5756
  "type": "string",
5757
5757
  "value_allowed_null": false
5758
5758
  },
@@ -5762,7 +5762,7 @@
5762
5762
  "example": "1",
5763
5763
  "member": "uint64",
5764
5764
  "name": "PartitionCount",
5765
- "required": false,
5765
+ "output_required": true,
5766
5766
  "type": "int",
5767
5767
  "value_allowed_null": false
5768
5768
  },
@@ -5772,7 +5772,7 @@
5772
5772
  "example": "xx",
5773
5773
  "member": "string",
5774
5774
  "name": "MachineWanIp",
5775
- "required": false,
5775
+ "output_required": true,
5776
5776
  "type": "string",
5777
5777
  "value_allowed_null": false
5778
5778
  },
@@ -5782,7 +5782,7 @@
5782
5782
  "example": "1",
5783
5783
  "member": "uint64",
5784
5784
  "name": "ProjectId",
5785
- "required": false,
5785
+ "output_required": true,
5786
5786
  "type": "int",
5787
5787
  "value_allowed_null": false
5788
5788
  },
@@ -5792,7 +5792,7 @@
5792
5792
  "example": "1",
5793
5793
  "member": "uint64",
5794
5794
  "name": "CpuSize",
5795
- "required": false,
5795
+ "output_required": true,
5796
5796
  "type": "int",
5797
5797
  "value_allowed_null": false
5798
5798
  },
@@ -5802,7 +5802,7 @@
5802
5802
  "example": "xx",
5803
5803
  "member": "string",
5804
5804
  "name": "CpuLoad",
5805
- "required": false,
5805
+ "output_required": true,
5806
5806
  "type": "string",
5807
5807
  "value_allowed_null": false
5808
5808
  },
@@ -5812,7 +5812,7 @@
5812
5812
  "example": "[]",
5813
5813
  "member": "MachineTag",
5814
5814
  "name": "Tag",
5815
- "required": false,
5815
+ "output_required": true,
5816
5816
  "type": "list",
5817
5817
  "value_allowed_null": true
5818
5818
  },
@@ -5822,7 +5822,7 @@
5822
5822
  "example": "2011-11-11 12:12:12",
5823
5823
  "member": "string",
5824
5824
  "name": "UpdateTime",
5825
- "required": false,
5825
+ "output_required": true,
5826
5826
  "type": "string",
5827
5827
  "value_allowed_null": true
5828
5828
  },
@@ -5832,7 +5832,7 @@
5832
5832
  "example": "1",
5833
5833
  "member": "int64",
5834
5834
  "name": "IsNew",
5835
- "required": false,
5835
+ "output_required": true,
5836
5836
  "type": "int",
5837
5837
  "value_allowed_null": false
5838
5838
  },
@@ -5842,7 +5842,7 @@
5842
5842
  "example": "2022-07-15 11:27:01",
5843
5843
  "member": "string",
5844
5844
  "name": "FirstTime",
5845
- "required": false,
5845
+ "output_required": true,
5846
5846
  "type": "string",
5847
5847
  "value_allowed_null": false
5848
5848
  },
@@ -5852,9 +5852,19 @@
5852
5852
  "example": "无",
5853
5853
  "member": "MachineExtraInfo",
5854
5854
  "name": "MachineExtraInfo",
5855
- "required": false,
5855
+ "output_required": true,
5856
5856
  "type": "object",
5857
5857
  "value_allowed_null": true
5858
+ },
5859
+ {
5860
+ "disabled": false,
5861
+ "document": "cpu负载读数(仅linux系统有效)\n注意:此字段可能返回 null,表示取不到有效值。",
5862
+ "example": "无",
5863
+ "member": "string",
5864
+ "name": "CpuLoadNum",
5865
+ "output_required": false,
5866
+ "type": "string",
5867
+ "value_allowed_null": true
5858
5868
  }
5859
5869
  ],
5860
5870
  "usage": "out"
@@ -12774,7 +12784,7 @@
12774
12784
  },
12775
12785
  {
12776
12786
  "disabled": false,
12777
- "document": "阻断状态:1-阻断成功;非1-阻断失败\n注意:此字段可能返回 null,表示取不到有效值。",
12787
+ "document": "0 -不阻断(客户端版本不支持)\n1 -已阻断\n2 -阻断失败(程序异常)\n3 -不阻断(内网不阻断)\n4 -可用区不支持阻断\n10-阻断中\n81-不阻断(未开启阻断)\n82-不阻断(非专业版)\n83-不阻断(已加白名单)\n86-不阻断(系统白名单)\n87-不阻断(客户端离线)\n注意:此字段可能返回 null,表示取不到有效值。",
12778
12788
  "example": "0",
12779
12789
  "member": "uint64",
12780
12790
  "name": "BanStatus",
@@ -12911,6 +12921,26 @@
12911
12921
  "output_required": false,
12912
12922
  "type": "int",
12913
12923
  "value_allowed_null": true
12924
+ },
12925
+ {
12926
+ "disabled": false,
12927
+ "document": "破解状态说明\n注意:此字段可能返回 null,表示取不到有效值。",
12928
+ "example": "无",
12929
+ "member": "string",
12930
+ "name": "AttackStatusDesc",
12931
+ "output_required": false,
12932
+ "type": "string",
12933
+ "value_allowed_null": true
12934
+ },
12935
+ {
12936
+ "disabled": false,
12937
+ "document": "阻断过期时间(仅阻断中事件有效)\n注意:此字段可能返回 null,表示取不到有效值。",
12938
+ "example": "无",
12939
+ "member": "string",
12940
+ "name": "BanExpiredTime",
12941
+ "output_required": false,
12942
+ "type": "string",
12943
+ "value_allowed_null": true
12914
12944
  }
12915
12945
  ],
12916
12946
  "usage": "out"
@@ -21105,6 +21135,16 @@
21105
21135
  "type": "bool",
21106
21136
  "value_allowed_null": false
21107
21137
  },
21138
+ {
21139
+ "disabled": false,
21140
+ "document": "是否开启智能过白模式",
21141
+ "example": "无",
21142
+ "member": "bool",
21143
+ "name": "OpenSmartMode",
21144
+ "output_required": false,
21145
+ "type": "bool",
21146
+ "value_allowed_null": false
21147
+ },
21108
21148
  {
21109
21149
  "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
21110
21150
  "member": "string",
@@ -46403,12 +46443,21 @@
46403
46443
  "members": [
46404
46444
  {
46405
46445
  "disabled": false,
46406
- "document": "阻断状态 0:关闭 1:开启",
46446
+ "document": "阻断开关状态: 0 -- 关闭 1 -- 高级阻断 2 -- 基础阻断(只阻断情报库黑ip)",
46407
46447
  "example": "1",
46408
46448
  "member": "uint64",
46409
46449
  "name": "Status",
46410
46450
  "required": true,
46411
46451
  "type": "int"
46452
+ },
46453
+ {
46454
+ "disabled": false,
46455
+ "document": "是否开启智能过白模式",
46456
+ "example": "无",
46457
+ "member": "bool",
46458
+ "name": "OpenSmartMode",
46459
+ "required": false,
46460
+ "type": "bool"
46412
46461
  }
46413
46462
  ],
46414
46463
  "type": "object"
@@ -693,7 +693,7 @@
693
693
  },
694
694
  {
695
695
  "disabled": false,
696
- "document": "通知签署方经办人的方式, 有以下途径:\n<ul><li> **sms** : (默认)短信</li>\n<li> **none** : 不通知</li></ul>",
696
+ "document": "通知签署方经办人的方式, 有以下途径:\n<ul><li> **sms** : (默认)短信</li>\n<li> **none** : 不通知</li></ul>\n```\n注意:\n如果使用的是通过文件发起合同(CreateFlowByFiles),NotifyType必须 是 sms 才会发送短信\n```",
697
697
  "example": "sms",
698
698
  "member": "string",
699
699
  "name": "NotifyType",
@@ -895,6 +895,15 @@
895
895
  "required": false,
896
896
  "type": "bool"
897
897
  },
898
+ {
899
+ "disabled": false,
900
+ "document": "允许编辑签署人信息(嵌入式使用) 默认true-可以编辑 false-不可以编辑",
901
+ "example": "true",
902
+ "member": "bool",
903
+ "name": "CanEditApprover",
904
+ "required": false,
905
+ "type": "bool"
906
+ },
898
907
  {
899
908
  "disabled": false,
900
909
  "document": "签署人信息补充类型,默认无需补充。\n\n<ul><li> **1** : ( 动态签署人(可发起合同后再补充签署人信息)注:`企业自动签不支持动态补充`</li>\n</ul>",
@@ -3347,6 +3356,51 @@
3347
3356
  "name": "CustomCreateFlowDescription",
3348
3357
  "required": false,
3349
3358
  "type": "string"
3359
+ },
3360
+ {
3361
+ "disabled": false,
3362
+ "document": " 禁止添加签署方,若为true则在发起流程的可嵌入页面隐藏“添加签署人按钮”\n",
3363
+ "example": "无",
3364
+ "member": "string",
3365
+ "name": "ForbidAddApprover",
3366
+ "required": false,
3367
+ "type": "string"
3368
+ },
3369
+ {
3370
+ "disabled": false,
3371
+ "document": " 禁止设置设置签署流程属性 (顺序、合同签署认证方式等),若为true则在发起流程的可嵌入页面隐藏签署流程设置面板\n",
3372
+ "example": "无",
3373
+ "member": "string",
3374
+ "name": "ForbidEditFlowProperties",
3375
+ "required": false,
3376
+ "type": "string"
3377
+ },
3378
+ {
3379
+ "disabled": false,
3380
+ "document": "在发起流程的可嵌入页面要隐藏的控件列表,和 ShowComponentTypes 参数 只能二选一使用,具体的控件类型如下\n<ul><li>SIGN_SIGNATURE : 个人签名/印章</li>\n<li>SIGN_SEAL : 企业印章</li>\n<li>SIGN_PAGING_SEAL : 骑缝章</li>\n<li>SIGN_LEGAL_PERSON_SEAL : 法定代表人章</li>\n<li>SIGN_APPROVE : 签批</li>\n<li>SIGN_OPINION : 签署意见</li>\n<li>BUSI-FULL-NAME : 企业全称</li>\n<li>BUSI-CREDIT-CODE : 统一社会信用代码</li>\n<li>BUSI-LEGAL-NAME : 法人/经营者姓名</li>\n<li>PERSONAL-NAME : 签署人姓名</li>\n<li>PERSONAL-MOBILE : 签署人手机号</li>\n<li>PERSONAL-IDCARD-TYPE : 签署人证件类型</li>\n<li>PERSONAL-IDCARD : 签署人证件号</li>\n<li>TEXT : 单行文本</li>\n<li>MULTI_LINE_TEXT : 多行文本</li>\n<li>CHECK_BOX : 勾选框</li>\n<li>SELECTOR : 选择器</li>\n<li>DIGIT : 数字</li>\n<li>DATE : 日期</li>\n<li>FILL_IMAGE : 图片</li>\n<li>ATTACHMENT : 附件</li>\n<li>EMAIL : 邮箱</li>\n<li>LOCATION : 地址</li>\n<li>EDUCATION : 学历</li>\n<li>GENDER : 性别</li>\n<li>DISTRICT : 省市区</li></ul>",
3381
+ "example": "无",
3382
+ "member": "string",
3383
+ "name": "HideComponentTypes",
3384
+ "required": false,
3385
+ "type": "list"
3386
+ },
3387
+ {
3388
+ "disabled": false,
3389
+ "document": "在发起流程的可嵌入页面要显示的控件列表,和 HideComponentTypes 参数 只能二选一使用,具体的控件类型如下\n<ul><li>SIGN_SIGNATURE : 个人签名/印章</li>\n<li>SIGN_SEAL : 企业印章</li>\n<li>SIGN_PAGING_SEAL : 骑缝章</li>\n<li>SIGN_LEGAL_PERSON_SEAL : 法定代表人章</li>\n<li>SIGN_APPROVE : 签批</li>\n<li>SIGN_OPINION : 签署意见</li>\n<li>BUSI-FULL-NAME : 企业全称</li>\n<li>BUSI-CREDIT-CODE : 统一社会信用代码</li>\n<li>BUSI-LEGAL-NAME : 法人/经营者姓名</li>\n<li>PERSONAL-NAME : 签署人姓名</li>\n<li>PERSONAL-MOBILE : 签署人手机号</li>\n<li>PERSONAL-IDCARD-TYPE : 签署人证件类型</li>\n<li>PERSONAL-IDCARD : 签署人证件号</li>\n<li>TEXT : 单行文本</li>\n<li>MULTI_LINE_TEXT : 多行文本</li>\n<li>CHECK_BOX : 勾选框</li>\n<li>SELECTOR : 选择器</li>\n<li>DIGIT : 数字</li>\n<li>DATE : 日期</li>\n<li>FILL_IMAGE : 图片</li>\n<li>ATTACHMENT : 附件</li>\n<li>EMAIL : 邮箱</li>\n<li>LOCATION : 地址</li>\n<li>EDUCATION : 学历</li>\n<li>GENDER : 性别</li>\n<li>DISTRICT : 省市区</li></ul>",
3390
+ "example": "无",
3391
+ "member": "string",
3392
+ "name": "ShowComponentTypes",
3393
+ "required": false,
3394
+ "type": "list"
3395
+ },
3396
+ {
3397
+ "disabled": false,
3398
+ "document": "发起流程的可嵌入页面结果页配置",
3399
+ "example": "无",
3400
+ "member": "CreateResultPageConfig",
3401
+ "name": "ResultPageConfig",
3402
+ "required": false,
3403
+ "type": "list"
3350
3404
  }
3351
3405
  ],
3352
3406
  "usage": "in"
@@ -4975,6 +5029,39 @@
4975
5029
  ],
4976
5030
  "type": "object"
4977
5031
  },
5032
+ "CreateResultPageConfig": {
5033
+ "document": "发起流程的可嵌入页面操作结果页配置",
5034
+ "members": [
5035
+ {
5036
+ "disabled": false,
5037
+ "document": "<ul>\n <li>0 : 发起审批成功页面(通过接口<a href=\"https://qian.tencent.com/developers/companyApis/embedPages/CreatePrepareFlow/\" target=\"_blank\">创建发起流程web页面</a>发起时设置了NeedCreateReview参数为true)</li>\n</ul>",
5038
+ "example": "无",
5039
+ "member": "int64",
5040
+ "name": "Type",
5041
+ "required": true,
5042
+ "type": "int"
5043
+ },
5044
+ {
5045
+ "disabled": false,
5046
+ "document": "结果页标题,不超过50字",
5047
+ "example": "无",
5048
+ "member": "string",
5049
+ "name": "Title",
5050
+ "required": true,
5051
+ "type": "string"
5052
+ },
5053
+ {
5054
+ "disabled": false,
5055
+ "document": "结果页描述,不超过200字",
5056
+ "example": "无",
5057
+ "member": "string",
5058
+ "name": "Description",
5059
+ "required": false,
5060
+ "type": "string"
5061
+ }
5062
+ ],
5063
+ "usage": "in"
5064
+ },
4978
5065
  "CreateSchemeUrlRequest": {
4979
5066
  "document": "CreateSchemeUrl请求参数结构体",
4980
5067
  "members": [