tencentcloud-sdk-ess 3.0.590 → 3.0.592
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20201111/client.rb +24 -0
- data/lib/v20201111/models.rb +419 -163
- metadata +2 -2
data/lib/v20201111/models.rb
CHANGED
@@ -27,7 +27,7 @@ module TencentCloud
|
|
27
27
|
# @type Mobile: String
|
28
28
|
|
29
29
|
attr_accessor :Name, :Mobile
|
30
|
-
|
30
|
+
|
31
31
|
def initialize(name=nil, mobile=nil)
|
32
32
|
@Name = name
|
33
33
|
@Mobile = mobile
|
@@ -51,7 +51,14 @@ module TencentCloud
|
|
51
51
|
# @type ProxyOperator: String
|
52
52
|
|
53
53
|
attr_accessor :AppId, :ProxyAppId, :ProxyOrganizationId, :ProxyOperator
|
54
|
-
|
54
|
+
extend Gem::Deprecate
|
55
|
+
deprecate :AppId, :none, 2023, 6
|
56
|
+
deprecate :AppId=, :none, 2023, 6
|
57
|
+
deprecate :ProxyAppId, :none, 2023, 6
|
58
|
+
deprecate :ProxyAppId=, :none, 2023, 6
|
59
|
+
deprecate :ProxyOperator, :none, 2023, 6
|
60
|
+
deprecate :ProxyOperator=, :none, 2023, 6
|
61
|
+
|
55
62
|
def initialize(appid=nil, proxyappid=nil, proxyorganizationid=nil, proxyoperator=nil)
|
56
63
|
@AppId = appid
|
57
64
|
@ProxyAppId = proxyappid
|
@@ -116,7 +123,7 @@ module TencentCloud
|
|
116
123
|
# @type ApproverSignTypes: Array
|
117
124
|
|
118
125
|
attr_accessor :ApproverType, :ApproverName, :ApproverMobile, :SignComponents, :OrganizationName, :ApproverIdCardNumber, :ApproverIdCardType, :NotifyType, :ApproverRole, :VerifyChannel, :PreReadTime, :UserId, :ApproverSource, :CustomApproverTag, :ApproverOption, :ApproverVerifyTypes, :ApproverSignTypes
|
119
|
-
|
126
|
+
|
120
127
|
def initialize(approvertype=nil, approvername=nil, approvermobile=nil, signcomponents=nil, organizationname=nil, approveridcardnumber=nil, approveridcardtype=nil, notifytype=nil, approverrole=nil, verifychannel=nil, prereadtime=nil, userid=nil, approversource=nil, customapprovertag=nil, approveroption=nil, approververifytypes=nil, approversigntypes=nil)
|
121
128
|
@ApproverType = approvertype
|
122
129
|
@ApproverName = approvername
|
@@ -176,7 +183,7 @@ module TencentCloud
|
|
176
183
|
# @type NoTransfer: Boolean
|
177
184
|
|
178
185
|
attr_accessor :NoRefuse, :NoTransfer
|
179
|
-
|
186
|
+
|
180
187
|
def initialize(norefuse=nil, notransfer=nil)
|
181
188
|
@NoRefuse = norefuse
|
182
189
|
@NoTransfer = notransfer
|
@@ -200,7 +207,7 @@ module TencentCloud
|
|
200
207
|
# @type IdCardNumber: String
|
201
208
|
|
202
209
|
attr_accessor :Name, :Mobile, :IdCardType, :IdCardNumber
|
203
|
-
|
210
|
+
|
204
211
|
def initialize(name=nil, mobile=nil, idcardtype=nil, idcardnumber=nil)
|
205
212
|
@Name = name
|
206
213
|
@Mobile = mobile
|
@@ -222,7 +229,7 @@ module TencentCloud
|
|
222
229
|
# @type UserId: String
|
223
230
|
|
224
231
|
attr_accessor :UserId
|
225
|
-
|
232
|
+
|
226
233
|
def initialize(userid=nil)
|
227
234
|
@UserId = userid
|
228
235
|
end
|
@@ -248,7 +255,7 @@ module TencentCloud
|
|
248
255
|
# @type VerifyChannels: Array
|
249
256
|
|
250
257
|
attr_accessor :UserInfo, :CallbackUrl, :CertInfoCallback, :UserDefineSeal, :SealImgCallback, :VerifyChannels
|
251
|
-
|
258
|
+
|
252
259
|
def initialize(userinfo=nil, callbackurl=nil, certinfocallback=nil, userdefineseal=nil, sealimgcallback=nil, verifychannels=nil)
|
253
260
|
@UserInfo = userinfo
|
254
261
|
@CallbackUrl = callbackurl
|
@@ -281,7 +288,7 @@ module TencentCloud
|
|
281
288
|
# @type OpenId: String
|
282
289
|
|
283
290
|
attr_accessor :Operator, :UserId, :OpenId
|
284
|
-
|
291
|
+
|
285
292
|
def initialize(operator=nil, userid=nil, openid=nil)
|
286
293
|
@Operator = operator
|
287
294
|
@UserId = userid
|
@@ -306,7 +313,7 @@ module TencentCloud
|
|
306
313
|
# @type RequestId: String
|
307
314
|
|
308
315
|
attr_accessor :Status, :RequestId
|
309
|
-
|
316
|
+
|
310
317
|
def initialize(status=nil, requestid=nil)
|
311
318
|
@Status = status
|
312
319
|
@RequestId = requestid
|
@@ -330,7 +337,10 @@ module TencentCloud
|
|
330
337
|
# @type CallbackToken: String
|
331
338
|
|
332
339
|
attr_accessor :CallbackUrl, :Token, :CallbackKey, :CallbackToken
|
333
|
-
|
340
|
+
extend Gem::Deprecate
|
341
|
+
deprecate :Token, :none, 2023, 6
|
342
|
+
deprecate :Token=, :none, 2023, 6
|
343
|
+
|
334
344
|
def initialize(callbackurl=nil, token=nil, callbackkey=nil, callbacktoken=nil)
|
335
345
|
@CallbackUrl = callbackurl
|
336
346
|
@Token = token
|
@@ -358,7 +368,14 @@ module TencentCloud
|
|
358
368
|
# @type SubOrganizationId: String
|
359
369
|
|
360
370
|
attr_accessor :ApplicationId, :OrganizationId, :OperatorId, :SubOrganizationId
|
361
|
-
|
371
|
+
extend Gem::Deprecate
|
372
|
+
deprecate :ApplicationId, :none, 2023, 6
|
373
|
+
deprecate :ApplicationId=, :none, 2023, 6
|
374
|
+
deprecate :OrganizationId, :none, 2023, 6
|
375
|
+
deprecate :OrganizationId=, :none, 2023, 6
|
376
|
+
deprecate :SubOrganizationId, :none, 2023, 6
|
377
|
+
deprecate :SubOrganizationId=, :none, 2023, 6
|
378
|
+
|
362
379
|
def initialize(applicationid=nil, organizationid=nil, operatorid=nil, suborganizationid=nil)
|
363
380
|
@ApplicationId = applicationid
|
364
381
|
@OrganizationId = organizationid
|
@@ -386,7 +403,7 @@ module TencentCloud
|
|
386
403
|
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
387
404
|
|
388
405
|
attr_accessor :Operator, :FlowId, :CancelMessage, :Agent
|
389
|
-
|
406
|
+
|
390
407
|
def initialize(operator=nil, flowid=nil, cancelmessage=nil, agent=nil)
|
391
408
|
@Operator = operator
|
392
409
|
@FlowId = flowid
|
@@ -414,7 +431,7 @@ module TencentCloud
|
|
414
431
|
# @type RequestId: String
|
415
432
|
|
416
433
|
attr_accessor :RequestId
|
417
|
-
|
434
|
+
|
418
435
|
def initialize(requestid=nil)
|
419
436
|
@RequestId = requestid
|
420
437
|
end
|
@@ -434,7 +451,7 @@ module TencentCloud
|
|
434
451
|
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
435
452
|
|
436
453
|
attr_accessor :Operator, :QrCodeId, :Agent
|
437
|
-
|
454
|
+
|
438
455
|
def initialize(operator=nil, qrcodeid=nil, agent=nil)
|
439
456
|
@Operator = operator
|
440
457
|
@QrCodeId = qrcodeid
|
@@ -460,7 +477,7 @@ module TencentCloud
|
|
460
477
|
# @type RequestId: String
|
461
478
|
|
462
479
|
attr_accessor :RequestId
|
463
|
-
|
480
|
+
|
464
481
|
def initialize(requestid=nil)
|
465
482
|
@RequestId = requestid
|
466
483
|
end
|
@@ -480,7 +497,7 @@ module TencentCloud
|
|
480
497
|
# @type UserInfo: :class:`Tencentcloud::Ess.v20201111.models.UserThreeFactor`
|
481
498
|
|
482
499
|
attr_accessor :Operator, :SceneKey, :UserInfo
|
483
|
-
|
500
|
+
|
484
501
|
def initialize(operator=nil, scenekey=nil, userinfo=nil)
|
485
502
|
@Operator = operator
|
486
503
|
@SceneKey = scenekey
|
@@ -506,7 +523,7 @@ module TencentCloud
|
|
506
523
|
# @type RequestId: String
|
507
524
|
|
508
525
|
attr_accessor :RequestId
|
509
|
-
|
526
|
+
|
510
527
|
def initialize(requestid=nil)
|
511
528
|
@RequestId = requestid
|
512
529
|
end
|
@@ -532,7 +549,7 @@ module TencentCloud
|
|
532
549
|
# @type CcPermission: Integer
|
533
550
|
|
534
551
|
attr_accessor :Mobile, :Name, :CcType, :CcPermission
|
535
|
-
|
552
|
+
|
536
553
|
def initialize(mobile=nil, name=nil, cctype=nil, ccpermission=nil)
|
537
554
|
@Mobile = mobile
|
538
555
|
@Name = name
|
@@ -603,11 +620,10 @@ module TencentCloud
|
|
603
620
|
# {“ComponentTypeLimit”: [“xxx”]}
|
604
621
|
# xxx可以为:
|
605
622
|
# HANDWRITE – 手写签名
|
606
|
-
# BORDERLESS_ESIGN – 自动生成无边框腾讯体
|
607
623
|
# OCR_ESIGN -- AI智能识别手写签名
|
608
624
|
# ESIGN -- 个人印章类型
|
609
625
|
# SYSTEM_ESIGN -- 系统签名(该类型可以在用户签署时根据用户姓名一键生成一个签名来进行签署)
|
610
|
-
# 如:{“ComponentTypeLimit”: [“
|
626
|
+
# 如:{“ComponentTypeLimit”: [“SYSTEM_ESIGN”]}
|
611
627
|
|
612
628
|
# ComponentType为SIGN_DATE时,支持以下参数:
|
613
629
|
# 1 Font:字符串类型目前只支持"黑体"、"宋体",如果不填默认为"黑体"
|
@@ -723,7 +739,7 @@ module TencentCloud
|
|
723
739
|
# @type KeywordIndexes: Array
|
724
740
|
|
725
741
|
attr_accessor :ComponentType, :FileIndex, :ComponentHeight, :ComponentWidth, :ComponentPage, :ComponentPosX, :ComponentPosY, :ComponentId, :ComponentName, :ComponentRequired, :ComponentRecipientId, :ComponentExtra, :IsFormType, :ComponentValue, :GenerateMode, :ComponentDateFontSize, :ChannelComponentId, :OffsetX, :OffsetY, :ChannelComponentSource, :KeywordOrder, :KeywordPage, :RelativeLocation, :KeywordIndexes
|
726
|
-
|
742
|
+
|
727
743
|
def initialize(componenttype=nil, fileindex=nil, componentheight=nil, componentwidth=nil, componentpage=nil, componentposx=nil, componentposy=nil, componentid=nil, componentname=nil, componentrequired=nil, componentrecipientid=nil, componentextra=nil, isformtype=nil, componentvalue=nil, generatemode=nil, componentdatefontsize=nil, channelcomponentid=nil, offsetx=nil, offsety=nil, channelcomponentsource=nil, keywordorder=nil, keywordpage=nil, relativelocation=nil, keywordindexes=nil)
|
728
744
|
@ComponentType = componenttype
|
729
745
|
@FileIndex = fileindex
|
@@ -787,7 +803,7 @@ module TencentCloud
|
|
787
803
|
# @type FlowIds: Array
|
788
804
|
|
789
805
|
attr_accessor :Operator, :FlowIds
|
790
|
-
|
806
|
+
|
791
807
|
def initialize(operator=nil, flowids=nil)
|
792
808
|
@Operator = operator
|
793
809
|
@FlowIds = flowids
|
@@ -814,7 +830,7 @@ module TencentCloud
|
|
814
830
|
# @type RequestId: String
|
815
831
|
|
816
832
|
attr_accessor :BatchCancelFlowUrl, :FailMessages, :UrlExpireOn, :RequestId
|
817
|
-
|
833
|
+
|
818
834
|
def initialize(batchcancelflowurl=nil, failmessages=nil, urlexpireon=nil, requestid=nil)
|
819
835
|
@BatchCancelFlowUrl = batchcancelflowurl
|
820
836
|
@FailMessages = failmessages
|
@@ -838,7 +854,7 @@ module TencentCloud
|
|
838
854
|
# @type ApplicationId: String
|
839
855
|
|
840
856
|
attr_accessor :Operator, :ApplicationId
|
841
|
-
|
857
|
+
|
842
858
|
def initialize(operator=nil, applicationid=nil)
|
843
859
|
@Operator = operator
|
844
860
|
@ApplicationId = applicationid
|
@@ -863,7 +879,7 @@ module TencentCloud
|
|
863
879
|
# @type RequestId: String
|
864
880
|
|
865
881
|
attr_accessor :QrCodeUrl, :ExpiredTime, :RequestId
|
866
|
-
|
882
|
+
|
867
883
|
def initialize(qrcodeurl=nil, expiredtime=nil, requestid=nil)
|
868
884
|
@QrCodeUrl = qrcodeurl
|
869
885
|
@ExpiredTime = expiredtime
|
@@ -893,7 +909,12 @@ module TencentCloud
|
|
893
909
|
# @type Organization: :class:`Tencentcloud::Ess.v20201111.models.OrganizationInfo`
|
894
910
|
|
895
911
|
attr_accessor :ResourceType, :ResourceName, :ResourceId, :Operator, :Agent, :Organization
|
896
|
-
|
912
|
+
extend Gem::Deprecate
|
913
|
+
deprecate :Agent, :none, 2023, 6
|
914
|
+
deprecate :Agent=, :none, 2023, 6
|
915
|
+
deprecate :Organization, :none, 2023, 6
|
916
|
+
deprecate :Organization=, :none, 2023, 6
|
917
|
+
|
897
918
|
def initialize(resourcetype=nil, resourcename=nil, resourceid=nil, operator=nil, agent=nil, organization=nil)
|
898
919
|
@ResourceType = resourcetype
|
899
920
|
@ResourceName = resourcename
|
@@ -930,7 +951,7 @@ module TencentCloud
|
|
930
951
|
# @type RequestId: String
|
931
952
|
|
932
953
|
attr_accessor :TaskId, :RequestId
|
933
|
-
|
954
|
+
|
934
955
|
def initialize(taskid=nil, requestid=nil)
|
935
956
|
@TaskId = taskid
|
936
957
|
@RequestId = requestid
|
@@ -965,7 +986,7 @@ module TencentCloud
|
|
965
986
|
# @type ClientToken: String
|
966
987
|
|
967
988
|
attr_accessor :Operator, :FlowId, :TemplateId, :FileNames, :FormFields, :NeedPreview, :PreviewType, :Agent, :ClientToken
|
968
|
-
|
989
|
+
|
969
990
|
def initialize(operator=nil, flowid=nil, templateid=nil, filenames=nil, formfields=nil, needpreview=nil, previewtype=nil, agent=nil, clienttoken=nil)
|
970
991
|
@Operator = operator
|
971
992
|
@FlowId = flowid
|
@@ -1015,7 +1036,7 @@ module TencentCloud
|
|
1015
1036
|
# @type RequestId: String
|
1016
1037
|
|
1017
1038
|
attr_accessor :DocumentId, :PreviewFileUrl, :RequestId
|
1018
|
-
|
1039
|
+
|
1019
1040
|
def initialize(documentid=nil, previewfileurl=nil, requestid=nil)
|
1020
1041
|
@DocumentId = documentid
|
1021
1042
|
@PreviewFileUrl = previewfileurl
|
@@ -1041,7 +1062,7 @@ module TencentCloud
|
|
1041
1062
|
# @type Initiator: String
|
1042
1063
|
|
1043
1064
|
attr_accessor :Operator, :FlowId, :Approvers, :Initiator
|
1044
|
-
|
1065
|
+
|
1045
1066
|
def initialize(operator=nil, flowid=nil, approvers=nil, initiator=nil)
|
1046
1067
|
@Operator = operator
|
1047
1068
|
@FlowId = flowid
|
@@ -1073,7 +1094,7 @@ module TencentCloud
|
|
1073
1094
|
# @type RequestId: String
|
1074
1095
|
|
1075
1096
|
attr_accessor :RequestId
|
1076
|
-
|
1097
|
+
|
1077
1098
|
def initialize(requestid=nil)
|
1078
1099
|
@RequestId = requestid
|
1079
1100
|
end
|
@@ -1141,7 +1162,7 @@ module TencentCloud
|
|
1141
1162
|
# @type AutoSignScene: String
|
1142
1163
|
|
1143
1164
|
attr_accessor :Operator, :FlowName, :Approvers, :FileIds, :FlowType, :Components, :CcInfos, :NeedPreview, :PreviewType, :Deadline, :Unordered, :CustomShowMap, :NeedSignReview, :UserData, :ApproverVerifyType, :FlowDescription, :SignBeanTag, :Agent, :CcNotifyType, :AutoSignScene
|
1144
|
-
|
1165
|
+
|
1145
1166
|
def initialize(operator=nil, flowname=nil, approvers=nil, fileids=nil, flowtype=nil, components=nil, ccinfos=nil, needpreview=nil, previewtype=nil, deadline=nil, unordered=nil, customshowmap=nil, needsignreview=nil, userdata=nil, approververifytype=nil, flowdescription=nil, signbeantag=nil, agent=nil, ccnotifytype=nil, autosignscene=nil)
|
1146
1167
|
@Operator = operator
|
1147
1168
|
@FlowName = flowname
|
@@ -1231,7 +1252,7 @@ module TencentCloud
|
|
1231
1252
|
# @type RequestId: String
|
1232
1253
|
|
1233
1254
|
attr_accessor :FlowId, :PreviewUrl, :RequestId
|
1234
|
-
|
1255
|
+
|
1235
1256
|
def initialize(flowid=nil, previewurl=nil, requestid=nil)
|
1236
1257
|
@FlowId = flowid
|
1237
1258
|
@PreviewUrl = previewurl
|
@@ -1253,7 +1274,7 @@ module TencentCloud
|
|
1253
1274
|
# @type FlowId: String
|
1254
1275
|
|
1255
1276
|
attr_accessor :Operator, :FlowId
|
1256
|
-
|
1277
|
+
|
1257
1278
|
def initialize(operator=nil, flowid=nil)
|
1258
1279
|
@Operator = operator
|
1259
1280
|
@FlowId = flowid
|
@@ -1284,7 +1305,7 @@ module TencentCloud
|
|
1284
1305
|
# @type RequestId: String
|
1285
1306
|
|
1286
1307
|
attr_accessor :ReportId, :Status, :ReportUrl, :RequestId
|
1287
|
-
|
1308
|
+
|
1288
1309
|
def initialize(reportid=nil, status=nil, reporturl=nil, requestid=nil)
|
1289
1310
|
@ReportId = reportid
|
1290
1311
|
@Status = status
|
@@ -1308,7 +1329,7 @@ module TencentCloud
|
|
1308
1329
|
# @type FlowIds: Array
|
1309
1330
|
|
1310
1331
|
attr_accessor :Operator, :FlowIds
|
1311
|
-
|
1332
|
+
|
1312
1333
|
def initialize(operator=nil, flowids=nil)
|
1313
1334
|
@Operator = operator
|
1314
1335
|
@FlowIds = flowids
|
@@ -1331,7 +1352,7 @@ module TencentCloud
|
|
1331
1352
|
# @type RequestId: String
|
1332
1353
|
|
1333
1354
|
attr_accessor :RemindFlowRecords, :RequestId
|
1334
|
-
|
1355
|
+
|
1335
1356
|
def initialize(remindflowrecords=nil, requestid=nil)
|
1336
1357
|
@RemindFlowRecords = remindflowrecords
|
1337
1358
|
@RequestId = requestid
|
@@ -1394,7 +1415,12 @@ module TencentCloud
|
|
1394
1415
|
# @type AutoSignScene: String
|
1395
1416
|
|
1396
1417
|
attr_accessor :Operator, :FlowName, :Approvers, :FlowType, :ClientToken, :RelatedFlowId, :DeadLine, :UserData, :FlowDescription, :Unordered, :CustomShowMap, :NeedSignReview, :CallbackUrl, :Agent, :CcInfos, :AutoSignScene
|
1397
|
-
|
1418
|
+
extend Gem::Deprecate
|
1419
|
+
deprecate :RelatedFlowId, :none, 2023, 6
|
1420
|
+
deprecate :RelatedFlowId=, :none, 2023, 6
|
1421
|
+
deprecate :CallbackUrl, :none, 2023, 6
|
1422
|
+
deprecate :CallbackUrl=, :none, 2023, 6
|
1423
|
+
|
1398
1424
|
def initialize(operator=nil, flowname=nil, approvers=nil, flowtype=nil, clienttoken=nil, relatedflowid=nil, deadline=nil, userdata=nil, flowdescription=nil, unordered=nil, customshowmap=nil, needsignreview=nil, callbackurl=nil, agent=nil, ccinfos=nil, autosignscene=nil)
|
1399
1425
|
@Operator = operator
|
1400
1426
|
@FlowName = flowname
|
@@ -1462,7 +1488,7 @@ module TencentCloud
|
|
1462
1488
|
# @type RequestId: String
|
1463
1489
|
|
1464
1490
|
attr_accessor :FlowId, :RequestId
|
1465
|
-
|
1491
|
+
|
1466
1492
|
def initialize(flowid=nil, requestid=nil)
|
1467
1493
|
@FlowId = flowid
|
1468
1494
|
@RequestId = requestid
|
@@ -1491,7 +1517,7 @@ module TencentCloud
|
|
1491
1517
|
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
1492
1518
|
|
1493
1519
|
attr_accessor :Operator, :FlowId, :ReviewType, :ReviewMessage, :Agent
|
1494
|
-
|
1520
|
+
|
1495
1521
|
def initialize(operator=nil, flowid=nil, reviewtype=nil, reviewmessage=nil, agent=nil)
|
1496
1522
|
@Operator = operator
|
1497
1523
|
@FlowId = flowid
|
@@ -1521,7 +1547,7 @@ module TencentCloud
|
|
1521
1547
|
# @type RequestId: String
|
1522
1548
|
|
1523
1549
|
attr_accessor :RequestId
|
1524
|
-
|
1550
|
+
|
1525
1551
|
def initialize(requestid=nil)
|
1526
1552
|
@RequestId = requestid
|
1527
1553
|
end
|
@@ -1545,7 +1571,10 @@ module TencentCloud
|
|
1545
1571
|
# @type Organization: :class:`Tencentcloud::Ess.v20201111.models.OrganizationInfo`
|
1546
1572
|
|
1547
1573
|
attr_accessor :FlowId, :FlowApproverInfos, :Operator, :Agent, :Organization
|
1548
|
-
|
1574
|
+
extend Gem::Deprecate
|
1575
|
+
deprecate :Organization, :none, 2023, 6
|
1576
|
+
deprecate :Organization=, :none, 2023, 6
|
1577
|
+
|
1549
1578
|
def initialize(flowid=nil, flowapproverinfos=nil, operator=nil, agent=nil, organization=nil)
|
1550
1579
|
@FlowId = flowid
|
1551
1580
|
@FlowApproverInfos = flowapproverinfos
|
@@ -1587,7 +1616,7 @@ module TencentCloud
|
|
1587
1616
|
# @type RequestId: String
|
1588
1617
|
|
1589
1618
|
attr_accessor :FlowApproverUrlInfos, :RequestId
|
1590
|
-
|
1619
|
+
|
1591
1620
|
def initialize(flowapproverurlinfos=nil, requestid=nil)
|
1592
1621
|
@FlowApproverUrlInfos = flowapproverurlinfos
|
1593
1622
|
@RequestId = requestid
|
@@ -1622,7 +1651,7 @@ module TencentCloud
|
|
1622
1651
|
# @type OrderNo: Integer
|
1623
1652
|
|
1624
1653
|
attr_accessor :Operator, :DeptName, :ParentDeptId, :ParentDeptOpenId, :DeptOpenId, :OrderNo
|
1625
|
-
|
1654
|
+
|
1626
1655
|
def initialize(operator=nil, deptname=nil, parentdeptid=nil, parentdeptopenid=nil, deptopenid=nil, orderno=nil)
|
1627
1656
|
@Operator = operator
|
1628
1657
|
@DeptName = deptname
|
@@ -1653,7 +1682,7 @@ module TencentCloud
|
|
1653
1682
|
# @type RequestId: String
|
1654
1683
|
|
1655
1684
|
attr_accessor :DeptId, :RequestId
|
1656
|
-
|
1685
|
+
|
1657
1686
|
def initialize(deptid=nil, requestid=nil)
|
1658
1687
|
@DeptId = deptid
|
1659
1688
|
@RequestId = requestid
|
@@ -1669,13 +1698,13 @@ module TencentCloud
|
|
1669
1698
|
class CreateIntegrationEmployeesRequest < TencentCloud::Common::AbstractModel
|
1670
1699
|
# @param Operator: 操作人信息,userId必填
|
1671
1700
|
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
1672
|
-
# @param Employees: 待创建员工的信息,Mobile和DisplayName
|
1701
|
+
# @param Employees: 待创建员工的信息,Mobile和DisplayName必填,OpenId和Email选填,其他字段暂不支持
|
1673
1702
|
# @type Employees: Array
|
1674
1703
|
# @param Agent: 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
|
1675
1704
|
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
1676
1705
|
|
1677
1706
|
attr_accessor :Operator, :Employees, :Agent
|
1678
|
-
|
1707
|
+
|
1679
1708
|
def initialize(operator=nil, employees=nil, agent=nil)
|
1680
1709
|
@Operator = operator
|
1681
1710
|
@Employees = employees
|
@@ -1710,7 +1739,7 @@ module TencentCloud
|
|
1710
1739
|
# @type RequestId: String
|
1711
1740
|
|
1712
1741
|
attr_accessor :CreateEmployeeResult, :RequestId
|
1713
|
-
|
1742
|
+
|
1714
1743
|
def initialize(createemployeeresult=nil, requestid=nil)
|
1715
1744
|
@CreateEmployeeResult = createemployeeresult
|
1716
1745
|
@RequestId = requestid
|
@@ -1737,7 +1766,7 @@ module TencentCloud
|
|
1737
1766
|
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
1738
1767
|
|
1739
1768
|
attr_accessor :Operator, :UserIds, :RoleIds, :Agent
|
1740
|
-
|
1769
|
+
|
1741
1770
|
def initialize(operator=nil, userids=nil, roleids=nil, agent=nil)
|
1742
1771
|
@Operator = operator
|
1743
1772
|
@UserIds = userids
|
@@ -1767,7 +1796,7 @@ module TencentCloud
|
|
1767
1796
|
# @type RequestId: String
|
1768
1797
|
|
1769
1798
|
attr_accessor :FailedCreateRoleData, :RequestId
|
1770
|
-
|
1799
|
+
|
1771
1800
|
def initialize(failedcreateroledata=nil, requestid=nil)
|
1772
1801
|
@FailedCreateRoleData = failedcreateroledata
|
1773
1802
|
@RequestId = requestid
|
@@ -1815,7 +1844,12 @@ module TencentCloud
|
|
1815
1844
|
# @type ApproverRestrictions: :class:`Tencentcloud::Ess.v20201111.models.ApproverRestriction`
|
1816
1845
|
|
1817
1846
|
attr_accessor :Operator, :TemplateId, :FlowName, :MaxFlowNum, :FlowEffectiveDay, :QrEffectiveDay, :Restrictions, :UserData, :CallbackUrl, :Agent, :ApproverRestrictions
|
1818
|
-
|
1847
|
+
extend Gem::Deprecate
|
1848
|
+
deprecate :Agent, :none, 2023, 6
|
1849
|
+
deprecate :Agent=, :none, 2023, 6
|
1850
|
+
deprecate :ApproverRestrictions, :none, 2023, 6
|
1851
|
+
deprecate :ApproverRestrictions=, :none, 2023, 6
|
1852
|
+
|
1819
1853
|
def initialize(operator=nil, templateid=nil, flowname=nil, maxflownum=nil, floweffectiveday=nil, qreffectiveday=nil, restrictions=nil, userdata=nil, callbackurl=nil, agent=nil, approverrestrictions=nil)
|
1820
1854
|
@Operator = operator
|
1821
1855
|
@TemplateId = templateid
|
@@ -1871,7 +1905,7 @@ module TencentCloud
|
|
1871
1905
|
# @type RequestId: String
|
1872
1906
|
|
1873
1907
|
attr_accessor :QrCode, :SignUrls, :RequestId
|
1874
|
-
|
1908
|
+
|
1875
1909
|
def initialize(qrcode=nil, signurls=nil, requestid=nil)
|
1876
1910
|
@QrCode = qrcode
|
1877
1911
|
@SignUrls = signurls
|
@@ -1912,7 +1946,7 @@ module TencentCloud
|
|
1912
1946
|
# @type IntelligentStatus: String
|
1913
1947
|
|
1914
1948
|
attr_accessor :Operator, :ResourceId, :FlowName, :Unordered, :Deadline, :UserFlowTypeId, :Approvers, :IntelligentStatus
|
1915
|
-
|
1949
|
+
|
1916
1950
|
def initialize(operator=nil, resourceid=nil, flowname=nil, unordered=nil, deadline=nil, userflowtypeid=nil, approvers=nil, intelligentstatus=nil)
|
1917
1951
|
@Operator = operator
|
1918
1952
|
@ResourceId = resourceid
|
@@ -1954,7 +1988,7 @@ module TencentCloud
|
|
1954
1988
|
# @type RequestId: String
|
1955
1989
|
|
1956
1990
|
attr_accessor :Url, :RequestId
|
1957
|
-
|
1991
|
+
|
1958
1992
|
def initialize(url=nil, requestid=nil)
|
1959
1993
|
@Url = url
|
1960
1994
|
@RequestId = requestid
|
@@ -2011,7 +2045,10 @@ module TencentCloud
|
|
2011
2045
|
# @type FileId: String
|
2012
2046
|
|
2013
2047
|
attr_accessor :UserName, :IdCardNumber, :SealName, :Operator, :IdCardType, :SealImage, :SealImageCompress, :Mobile, :EnableAutoSign, :SealColor, :ProcessSeal, :FileId
|
2014
|
-
|
2048
|
+
extend Gem::Deprecate
|
2049
|
+
deprecate :SealImage, :none, 2023, 6
|
2050
|
+
deprecate :SealImage=, :none, 2023, 6
|
2051
|
+
|
2015
2052
|
def initialize(username=nil, idcardnumber=nil, sealname=nil, operator=nil, idcardtype=nil, sealimage=nil, sealimagecompress=nil, mobile=nil, enableautosign=nil, sealcolor=nil, processseal=nil, fileid=nil)
|
2016
2053
|
@UserName = username
|
2017
2054
|
@IdCardNumber = idcardnumber
|
@@ -2054,7 +2091,7 @@ module TencentCloud
|
|
2054
2091
|
# @type RequestId: String
|
2055
2092
|
|
2056
2093
|
attr_accessor :SealId, :RequestId
|
2057
|
-
|
2094
|
+
|
2058
2095
|
def initialize(sealid=nil, requestid=nil)
|
2059
2096
|
@SealId = sealid
|
2060
2097
|
@RequestId = requestid
|
@@ -2080,7 +2117,7 @@ module TencentCloud
|
|
2080
2117
|
# @type ReleasedApprovers: Array
|
2081
2118
|
|
2082
2119
|
attr_accessor :Operator, :NeedRelievedFlowId, :ReliveInfo, :ReleasedApprovers
|
2083
|
-
|
2120
|
+
|
2084
2121
|
def initialize(operator=nil, needrelievedflowid=nil, reliveinfo=nil, releasedapprovers=nil)
|
2085
2122
|
@Operator = operator
|
2086
2123
|
@NeedRelievedFlowId = needrelievedflowid
|
@@ -2117,7 +2154,7 @@ module TencentCloud
|
|
2117
2154
|
# @type RequestId: String
|
2118
2155
|
|
2119
2156
|
attr_accessor :FlowId, :RequestId
|
2120
|
-
|
2157
|
+
|
2121
2158
|
def initialize(flowid=nil, requestid=nil)
|
2122
2159
|
@FlowId = flowid
|
2123
2160
|
@RequestId = requestid
|
@@ -2154,7 +2191,7 @@ module TencentCloud
|
|
2154
2191
|
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
2155
2192
|
|
2156
2193
|
attr_accessor :Operator, :OrganizationName, :Name, :Mobile, :EndPoint, :FlowId, :PathType, :AutoJumpBack, :Agent
|
2157
|
-
|
2194
|
+
|
2158
2195
|
def initialize(operator=nil, organizationname=nil, name=nil, mobile=nil, endpoint=nil, flowid=nil, pathtype=nil, autojumpback=nil, agent=nil)
|
2159
2196
|
@Operator = operator
|
2160
2197
|
@OrganizationName = organizationname
|
@@ -2194,7 +2231,7 @@ module TencentCloud
|
|
2194
2231
|
# @type RequestId: String
|
2195
2232
|
|
2196
2233
|
attr_accessor :SchemeUrl, :RequestId
|
2197
|
-
|
2234
|
+
|
2198
2235
|
def initialize(schemeurl=nil, requestid=nil)
|
2199
2236
|
@SchemeUrl = schemeurl
|
2200
2237
|
@RequestId = requestid
|
@@ -2224,7 +2261,7 @@ module TencentCloud
|
|
2224
2261
|
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
2225
2262
|
|
2226
2263
|
attr_accessor :Operator, :Users, :SealId, :Expired, :UserIds, :Policy, :Agent
|
2227
|
-
|
2264
|
+
|
2228
2265
|
def initialize(operator=nil, users=nil, sealid=nil, expired=nil, userids=nil, policy=nil, agent=nil)
|
2229
2266
|
@Operator = operator
|
2230
2267
|
@Users = users
|
@@ -2267,7 +2304,7 @@ module TencentCloud
|
|
2267
2304
|
# @type RequestId: String
|
2268
2305
|
|
2269
2306
|
attr_accessor :UserIds, :RequestId
|
2270
|
-
|
2307
|
+
|
2271
2308
|
def initialize(userids=nil, requestid=nil)
|
2272
2309
|
@UserIds = userids
|
2273
2310
|
@RequestId = requestid
|
@@ -2289,7 +2326,7 @@ module TencentCloud
|
|
2289
2326
|
# @type FailedEmployeeData: Array
|
2290
2327
|
|
2291
2328
|
attr_accessor :SuccessEmployeeData, :FailedEmployeeData
|
2292
|
-
|
2329
|
+
|
2293
2330
|
def initialize(successemployeedata=nil, failedemployeedata=nil)
|
2294
2331
|
@SuccessEmployeeData = successemployeedata
|
2295
2332
|
@FailedEmployeeData = failedemployeedata
|
@@ -2334,7 +2371,7 @@ module TencentCloud
|
|
2334
2371
|
# @type ExpiredTime: Integer
|
2335
2372
|
|
2336
2373
|
attr_accessor :Operator, :SceneKey, :AutoSignConfig, :UrlType, :NotifyType, :NotifyAddress, :ExpiredTime
|
2337
|
-
|
2374
|
+
|
2338
2375
|
def initialize(operator=nil, scenekey=nil, autosignconfig=nil, urltype=nil, notifytype=nil, notifyaddress=nil, expiredtime=nil)
|
2339
2376
|
@Operator = operator
|
2340
2377
|
@SceneKey = scenekey
|
@@ -2380,7 +2417,7 @@ module TencentCloud
|
|
2380
2417
|
# @type RequestId: String
|
2381
2418
|
|
2382
2419
|
attr_accessor :Url, :AppId, :AppOriginalId, :Path, :QrCode, :UrlType, :RequestId
|
2383
|
-
|
2420
|
+
|
2384
2421
|
def initialize(url=nil, appid=nil, apporiginalid=nil, path=nil, qrcode=nil, urltype=nil, requestid=nil)
|
2385
2422
|
@Url = url
|
2386
2423
|
@AppId = appid
|
@@ -2412,7 +2449,7 @@ module TencentCloud
|
|
2412
2449
|
# @type ReceiveDeptId: String
|
2413
2450
|
|
2414
2451
|
attr_accessor :Operator, :DeptId, :ReceiveDeptId
|
2415
|
-
|
2452
|
+
|
2416
2453
|
def initialize(operator=nil, deptid=nil, receivedeptid=nil)
|
2417
2454
|
@Operator = operator
|
2418
2455
|
@DeptId = deptid
|
@@ -2435,7 +2472,7 @@ module TencentCloud
|
|
2435
2472
|
# @type RequestId: String
|
2436
2473
|
|
2437
2474
|
attr_accessor :RequestId
|
2438
|
-
|
2475
|
+
|
2439
2476
|
def initialize(requestid=nil)
|
2440
2477
|
@RequestId = requestid
|
2441
2478
|
end
|
@@ -2455,7 +2492,7 @@ module TencentCloud
|
|
2455
2492
|
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
2456
2493
|
|
2457
2494
|
attr_accessor :Operator, :Employees, :Agent
|
2458
|
-
|
2495
|
+
|
2459
2496
|
def initialize(operator=nil, employees=nil, agent=nil)
|
2460
2497
|
@Operator = operator
|
2461
2498
|
@Employees = employees
|
@@ -2490,7 +2527,7 @@ module TencentCloud
|
|
2490
2527
|
# @type RequestId: String
|
2491
2528
|
|
2492
2529
|
attr_accessor :DeleteEmployeeResult, :RequestId
|
2493
|
-
|
2530
|
+
|
2494
2531
|
def initialize(deleteemployeeresult=nil, requestid=nil)
|
2495
2532
|
@DeleteEmployeeResult = deleteemployeeresult
|
2496
2533
|
@RequestId = requestid
|
@@ -2517,7 +2554,7 @@ module TencentCloud
|
|
2517
2554
|
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
2518
2555
|
|
2519
2556
|
attr_accessor :Operator, :RoleId, :Users, :Agent
|
2520
|
-
|
2557
|
+
|
2521
2558
|
def initialize(operator=nil, roleid=nil, users=nil, agent=nil)
|
2522
2559
|
@Operator = operator
|
2523
2560
|
@RoleId = roleid
|
@@ -2554,7 +2591,7 @@ module TencentCloud
|
|
2554
2591
|
# @type RequestId: String
|
2555
2592
|
|
2556
2593
|
attr_accessor :RoleId, :RequestId
|
2557
|
-
|
2594
|
+
|
2558
2595
|
def initialize(roleid=nil, requestid=nil)
|
2559
2596
|
@RoleId = roleid
|
2560
2597
|
@RequestId = requestid
|
@@ -2580,7 +2617,7 @@ module TencentCloud
|
|
2580
2617
|
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
2581
2618
|
|
2582
2619
|
attr_accessor :Operator, :PolicyIds, :SealId, :UserIds, :Agent
|
2583
|
-
|
2620
|
+
|
2584
2621
|
def initialize(operator=nil, policyids=nil, sealid=nil, userids=nil, agent=nil)
|
2585
2622
|
@Operator = operator
|
2586
2623
|
@PolicyIds = policyids
|
@@ -2610,7 +2647,7 @@ module TencentCloud
|
|
2610
2647
|
# @type RequestId: String
|
2611
2648
|
|
2612
2649
|
attr_accessor :RequestId
|
2613
|
-
|
2650
|
+
|
2614
2651
|
def initialize(requestid=nil)
|
2615
2652
|
@RequestId = requestid
|
2616
2653
|
end
|
@@ -2630,7 +2667,7 @@ module TencentCloud
|
|
2630
2667
|
# @type FailedEmployeeData: Array
|
2631
2668
|
|
2632
2669
|
attr_accessor :SuccessEmployeeData, :FailedEmployeeData
|
2633
|
-
|
2670
|
+
|
2634
2671
|
def initialize(successemployeedata=nil, failedemployeedata=nil)
|
2635
2672
|
@SuccessEmployeeData = successemployeedata
|
2636
2673
|
@FailedEmployeeData = failedemployeedata
|
@@ -2664,7 +2701,7 @@ module TencentCloud
|
|
2664
2701
|
# @type DepartmentName: String
|
2665
2702
|
|
2666
2703
|
attr_accessor :DepartmentId, :DepartmentName
|
2667
|
-
|
2704
|
+
|
2668
2705
|
def initialize(departmentid=nil, departmentname=nil)
|
2669
2706
|
@DepartmentId = departmentid
|
2670
2707
|
@DepartmentName = departmentname
|
@@ -2676,6 +2713,68 @@ module TencentCloud
|
|
2676
2713
|
end
|
2677
2714
|
end
|
2678
2715
|
|
2716
|
+
# DescribeExtendedServiceAuthInfos请求参数结构体
|
2717
|
+
class DescribeExtendedServiceAuthInfosRequest < TencentCloud::Common::AbstractModel
|
2718
|
+
# @param Operator: 操作人信息
|
2719
|
+
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
2720
|
+
# @param Agent: 代理相关应用信息,如集团主企业代子企业操作
|
2721
|
+
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
2722
|
+
# @param ExtendServiceType: 扩展服务类型,默认为空,查询目前支持的所有扩展服务信息,单个指定则查询单个扩展服务开通信息,取值:
|
2723
|
+
# OPEN_SERVER_SIGN:开通企业静默签署
|
2724
|
+
# OVERSEA_SIGN:企业与港澳台居民签署合同
|
2725
|
+
# MOBILE_CHECK_APPROVER:使用手机号验证签署方身份
|
2726
|
+
# PAGING_SEAL:骑缝章
|
2727
|
+
# BATCH_SIGN:批量签署
|
2728
|
+
# @type ExtendServiceType: String
|
2729
|
+
|
2730
|
+
attr_accessor :Operator, :Agent, :ExtendServiceType
|
2731
|
+
|
2732
|
+
def initialize(operator=nil, agent=nil, extendservicetype=nil)
|
2733
|
+
@Operator = operator
|
2734
|
+
@Agent = agent
|
2735
|
+
@ExtendServiceType = extendservicetype
|
2736
|
+
end
|
2737
|
+
|
2738
|
+
def deserialize(params)
|
2739
|
+
unless params['Operator'].nil?
|
2740
|
+
@Operator = UserInfo.new
|
2741
|
+
@Operator.deserialize(params['Operator'])
|
2742
|
+
end
|
2743
|
+
unless params['Agent'].nil?
|
2744
|
+
@Agent = Agent.new
|
2745
|
+
@Agent.deserialize(params['Agent'])
|
2746
|
+
end
|
2747
|
+
@ExtendServiceType = params['ExtendServiceType']
|
2748
|
+
end
|
2749
|
+
end
|
2750
|
+
|
2751
|
+
# DescribeExtendedServiceAuthInfos返回参数结构体
|
2752
|
+
class DescribeExtendedServiceAuthInfosResponse < TencentCloud::Common::AbstractModel
|
2753
|
+
# @param AuthInfoList: 授权服务信息列表
|
2754
|
+
# @type AuthInfoList: Array
|
2755
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2756
|
+
# @type RequestId: String
|
2757
|
+
|
2758
|
+
attr_accessor :AuthInfoList, :RequestId
|
2759
|
+
|
2760
|
+
def initialize(authinfolist=nil, requestid=nil)
|
2761
|
+
@AuthInfoList = authinfolist
|
2762
|
+
@RequestId = requestid
|
2763
|
+
end
|
2764
|
+
|
2765
|
+
def deserialize(params)
|
2766
|
+
unless params['AuthInfoList'].nil?
|
2767
|
+
@AuthInfoList = []
|
2768
|
+
params['AuthInfoList'].each do |i|
|
2769
|
+
extendauthinfo_tmp = ExtendAuthInfo.new
|
2770
|
+
extendauthinfo_tmp.deserialize(i)
|
2771
|
+
@AuthInfoList << extendauthinfo_tmp
|
2772
|
+
end
|
2773
|
+
end
|
2774
|
+
@RequestId = params['RequestId']
|
2775
|
+
end
|
2776
|
+
end
|
2777
|
+
|
2679
2778
|
# DescribeFileUrls请求参数结构体
|
2680
2779
|
class DescribeFileUrlsRequest < TencentCloud::Common::AbstractModel
|
2681
2780
|
# @param Operator: 调用方用户信息,UserId 必填
|
@@ -2707,7 +2806,14 @@ module TencentCloud
|
|
2707
2806
|
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
2708
2807
|
|
2709
2808
|
attr_accessor :Operator, :BusinessType, :BusinessIds, :FileName, :FileType, :Offset, :Limit, :UrlTtl, :CcToken, :Scene, :Agent
|
2710
|
-
|
2809
|
+
extend Gem::Deprecate
|
2810
|
+
deprecate :CcToken, :none, 2023, 6
|
2811
|
+
deprecate :CcToken=, :none, 2023, 6
|
2812
|
+
deprecate :Scene, :none, 2023, 6
|
2813
|
+
deprecate :Scene=, :none, 2023, 6
|
2814
|
+
deprecate :Agent, :none, 2023, 6
|
2815
|
+
deprecate :Agent=, :none, 2023, 6
|
2816
|
+
|
2711
2817
|
def initialize(operator=nil, businesstype=nil, businessids=nil, filename=nil, filetype=nil, offset=nil, limit=nil, urlttl=nil, cctoken=nil, scene=nil, agent=nil)
|
2712
2818
|
@Operator = operator
|
2713
2819
|
@BusinessType = businesstype
|
@@ -2754,7 +2860,7 @@ module TencentCloud
|
|
2754
2860
|
# @type RequestId: String
|
2755
2861
|
|
2756
2862
|
attr_accessor :FileUrls, :TotalCount, :RequestId
|
2757
|
-
|
2863
|
+
|
2758
2864
|
def initialize(fileurls=nil, totalcount=nil, requestid=nil)
|
2759
2865
|
@FileUrls = fileurls
|
2760
2866
|
@TotalCount = totalcount
|
@@ -2785,7 +2891,7 @@ module TencentCloud
|
|
2785
2891
|
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
2786
2892
|
|
2787
2893
|
attr_accessor :Operator, :FlowIds, :Agent
|
2788
|
-
|
2894
|
+
|
2789
2895
|
def initialize(operator=nil, flowids=nil, agent=nil)
|
2790
2896
|
@Operator = operator
|
2791
2897
|
@FlowIds = flowids
|
@@ -2813,7 +2919,7 @@ module TencentCloud
|
|
2813
2919
|
# @type RequestId: String
|
2814
2920
|
|
2815
2921
|
attr_accessor :FlowBriefs, :RequestId
|
2816
|
-
|
2922
|
+
|
2817
2923
|
def initialize(flowbriefs=nil, requestid=nil)
|
2818
2924
|
@FlowBriefs = flowbriefs
|
2819
2925
|
@RequestId = requestid
|
@@ -2840,7 +2946,7 @@ module TencentCloud
|
|
2840
2946
|
# @type ReportId: String
|
2841
2947
|
|
2842
2948
|
attr_accessor :Operator, :ReportId
|
2843
|
-
|
2949
|
+
|
2844
2950
|
def initialize(operator=nil, reportid=nil)
|
2845
2951
|
@Operator = operator
|
2846
2952
|
@ReportId = reportid
|
@@ -2868,7 +2974,7 @@ module TencentCloud
|
|
2868
2974
|
# @type RequestId: String
|
2869
2975
|
|
2870
2976
|
attr_accessor :ReportUrl, :Status, :RequestId
|
2871
|
-
|
2977
|
+
|
2872
2978
|
def initialize(reporturl=nil, status=nil, requestid=nil)
|
2873
2979
|
@ReportUrl = reporturl
|
2874
2980
|
@Status = status
|
@@ -2892,7 +2998,7 @@ module TencentCloud
|
|
2892
2998
|
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
2893
2999
|
|
2894
3000
|
attr_accessor :FlowIds, :Operator, :Agent
|
2895
|
-
|
3001
|
+
|
2896
3002
|
def initialize(flowids=nil, operator=nil, agent=nil)
|
2897
3003
|
@FlowIds = flowids
|
2898
3004
|
@Operator = operator
|
@@ -2920,7 +3026,7 @@ module TencentCloud
|
|
2920
3026
|
# @type RequestId: String
|
2921
3027
|
|
2922
3028
|
attr_accessor :FlowDetailInfos, :RequestId
|
2923
|
-
|
3029
|
+
|
2924
3030
|
def initialize(flowdetailinfos=nil, requestid=nil)
|
2925
3031
|
@FlowDetailInfos = flowdetailinfos
|
2926
3032
|
@RequestId = requestid
|
@@ -2953,9 +3059,7 @@ module TencentCloud
|
|
2953
3059
|
# @type Offset: Integer
|
2954
3060
|
# @param Limit: 查询个数,默认20,最大200
|
2955
3061
|
# @type Limit: Integer
|
2956
|
-
# @param ApplicationId:
|
2957
|
-
# IsChannel=false时,ApplicationId参数不起任何作用。
|
2958
|
-
# IsChannel=true时,ApplicationId为空,查询所有第三方应用集成平台企业模板列表;ApplicationId不为空,查询指定应用下的模板列表
|
3062
|
+
# @param ApplicationId: ApplicationId不为空,查询指定应用下的模板列表
|
2959
3063
|
# ApplicationId为空,查询所有应用下的模板列表
|
2960
3064
|
# @type ApplicationId: String
|
2961
3065
|
# @param IsChannel: 默认为false,查询SaaS模板库列表;
|
@@ -2967,7 +3071,14 @@ module TencentCloud
|
|
2967
3071
|
# @type GenerateSource: Integer
|
2968
3072
|
|
2969
3073
|
attr_accessor :Operator, :Agent, :ContentType, :Filters, :Offset, :Limit, :ApplicationId, :IsChannel, :Organization, :GenerateSource
|
2970
|
-
|
3074
|
+
extend Gem::Deprecate
|
3075
|
+
deprecate :IsChannel, :none, 2023, 6
|
3076
|
+
deprecate :IsChannel=, :none, 2023, 6
|
3077
|
+
deprecate :Organization, :none, 2023, 6
|
3078
|
+
deprecate :Organization=, :none, 2023, 6
|
3079
|
+
deprecate :GenerateSource, :none, 2023, 6
|
3080
|
+
deprecate :GenerateSource=, :none, 2023, 6
|
3081
|
+
|
2971
3082
|
def initialize(operator=nil, agent=nil, contenttype=nil, filters=nil, offset=nil, limit=nil, applicationid=nil, ischannel=nil, organization=nil, generatesource=nil)
|
2972
3083
|
@Operator = operator
|
2973
3084
|
@Agent = agent
|
@@ -3021,7 +3132,7 @@ module TencentCloud
|
|
3021
3132
|
# @type RequestId: String
|
3022
3133
|
|
3023
3134
|
attr_accessor :Templates, :TotalCount, :RequestId
|
3024
|
-
|
3135
|
+
|
3025
3136
|
def initialize(templates=nil, totalcount=nil, requestid=nil)
|
3026
3137
|
@Templates = templates
|
3027
3138
|
@TotalCount = totalcount
|
@@ -3054,7 +3165,7 @@ module TencentCloud
|
|
3054
3165
|
# @type DeptOpenId: String
|
3055
3166
|
|
3056
3167
|
attr_accessor :Operator, :QueryType, :DeptId, :DeptOpenId
|
3057
|
-
|
3168
|
+
|
3058
3169
|
def initialize(operator=nil, querytype=nil, deptid=nil, deptopenid=nil)
|
3059
3170
|
@Operator = operator
|
3060
3171
|
@QueryType = querytype
|
@@ -3081,7 +3192,7 @@ module TencentCloud
|
|
3081
3192
|
# @type RequestId: String
|
3082
3193
|
|
3083
3194
|
attr_accessor :Departments, :RequestId
|
3084
|
-
|
3195
|
+
|
3085
3196
|
def initialize(departments=nil, requestid=nil)
|
3086
3197
|
@Departments = departments
|
3087
3198
|
@RequestId = requestid
|
@@ -3115,7 +3226,7 @@ module TencentCloud
|
|
3115
3226
|
# @type Offset: Integer
|
3116
3227
|
|
3117
3228
|
attr_accessor :Operator, :Limit, :Agent, :Filters, :Offset
|
3118
|
-
|
3229
|
+
|
3119
3230
|
def initialize(operator=nil, limit=nil, agent=nil, filters=nil, offset=nil)
|
3120
3231
|
@Operator = operator
|
3121
3232
|
@Limit = limit
|
@@ -3162,7 +3273,7 @@ module TencentCloud
|
|
3162
3273
|
# @type RequestId: String
|
3163
3274
|
|
3164
3275
|
attr_accessor :Employees, :Offset, :Limit, :TotalCount, :RequestId
|
3165
|
-
|
3276
|
+
|
3166
3277
|
def initialize(employees=nil, offset=nil, limit=nil, totalcount=nil, requestid=nil)
|
3167
3278
|
@Employees = employees
|
3168
3279
|
@Offset = offset
|
@@ -3193,7 +3304,7 @@ module TencentCloud
|
|
3193
3304
|
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
3194
3305
|
|
3195
3306
|
attr_accessor :Operator
|
3196
|
-
|
3307
|
+
|
3197
3308
|
def initialize(operator=nil)
|
3198
3309
|
@Operator = operator
|
3199
3310
|
end
|
@@ -3215,7 +3326,7 @@ module TencentCloud
|
|
3215
3326
|
# @type RequestId: String
|
3216
3327
|
|
3217
3328
|
attr_accessor :IntegrationMainOrganizationUser, :RequestId
|
3218
|
-
|
3329
|
+
|
3219
3330
|
def initialize(integrationmainorganizationuser=nil, requestid=nil)
|
3220
3331
|
@IntegrationMainOrganizationUser = integrationmainorganizationuser
|
3221
3332
|
@RequestId = requestid
|
@@ -3247,7 +3358,7 @@ module TencentCloud
|
|
3247
3358
|
# @type Offset: Integer
|
3248
3359
|
|
3249
3360
|
attr_accessor :Operator, :Limit, :Agent, :Filters, :Offset
|
3250
|
-
|
3361
|
+
|
3251
3362
|
def initialize(operator=nil, limit=nil, agent=nil, filters=nil, offset=nil)
|
3252
3363
|
@Operator = operator
|
3253
3364
|
@Limit = limit
|
@@ -3292,7 +3403,7 @@ module TencentCloud
|
|
3292
3403
|
# @type RequestId: String
|
3293
3404
|
|
3294
3405
|
attr_accessor :Offset, :Limit, :TotalCount, :IntegrateRoles, :RequestId
|
3295
|
-
|
3406
|
+
|
3296
3407
|
def initialize(offset=nil, limit=nil, totalcount=nil, integrateroles=nil, requestid=nil)
|
3297
3408
|
@Offset = offset
|
3298
3409
|
@Limit = limit
|
@@ -3335,7 +3446,7 @@ module TencentCloud
|
|
3335
3446
|
# @type Id: String
|
3336
3447
|
|
3337
3448
|
attr_accessor :Operator, :Limit, :Offset, :Name, :Status, :Export, :Id
|
3338
|
-
|
3449
|
+
|
3339
3450
|
def initialize(operator=nil, limit=nil, offset=nil, name=nil, status=nil, export=nil, id=nil)
|
3340
3451
|
@Operator = operator
|
3341
3452
|
@Limit = limit
|
@@ -3381,7 +3492,7 @@ module TencentCloud
|
|
3381
3492
|
# @type RequestId: String
|
3382
3493
|
|
3383
3494
|
attr_accessor :Total, :JoinedTotal, :ActivedTotal, :ExportUrl, :List, :RequestId
|
3384
|
-
|
3495
|
+
|
3385
3496
|
def initialize(total=nil, joinedtotal=nil, activedtotal=nil, exporturl=nil, list=nil, requestid=nil)
|
3386
3497
|
@Total = total
|
3387
3498
|
@JoinedTotal = joinedtotal
|
@@ -3432,7 +3543,7 @@ module TencentCloud
|
|
3432
3543
|
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
3433
3544
|
|
3434
3545
|
attr_accessor :Operator, :Limit, :Offset, :InfoType, :SealId, :SealTypes, :Agent
|
3435
|
-
|
3546
|
+
|
3436
3547
|
def initialize(operator=nil, limit=nil, offset=nil, infotype=nil, sealid=nil, sealtypes=nil, agent=nil)
|
3437
3548
|
@Operator = operator
|
3438
3549
|
@Limit = limit
|
@@ -3470,7 +3581,7 @@ module TencentCloud
|
|
3470
3581
|
# @type RequestId: String
|
3471
3582
|
|
3472
3583
|
attr_accessor :TotalCount, :Seals, :RequestId
|
3473
|
-
|
3584
|
+
|
3474
3585
|
def initialize(totalcount=nil, seals=nil, requestid=nil)
|
3475
3586
|
@TotalCount = totalcount
|
3476
3587
|
@Seals = seals
|
@@ -3497,7 +3608,7 @@ module TencentCloud
|
|
3497
3608
|
# @type AuthCode: String
|
3498
3609
|
|
3499
3610
|
attr_accessor :AuthCode
|
3500
|
-
|
3611
|
+
|
3501
3612
|
def initialize(authcode=nil)
|
3502
3613
|
@AuthCode = authcode
|
3503
3614
|
end
|
@@ -3515,7 +3626,7 @@ module TencentCloud
|
|
3515
3626
|
# @type RequestId: String
|
3516
3627
|
|
3517
3628
|
attr_accessor :VerifyStatus, :RequestId
|
3518
|
-
|
3629
|
+
|
3519
3630
|
def initialize(verifystatus=nil, requestid=nil)
|
3520
3631
|
@VerifyStatus = verifystatus
|
3521
3632
|
@RequestId = requestid
|
@@ -3538,7 +3649,7 @@ module TencentCloud
|
|
3538
3649
|
# @type UserInfo: :class:`Tencentcloud::Ess.v20201111.models.UserThreeFactor`
|
3539
3650
|
|
3540
3651
|
attr_accessor :Operator, :SceneKey, :UserInfo
|
3541
|
-
|
3652
|
+
|
3542
3653
|
def initialize(operator=nil, scenekey=nil, userinfo=nil)
|
3543
3654
|
@Operator = operator
|
3544
3655
|
@SceneKey = scenekey
|
@@ -3570,7 +3681,7 @@ module TencentCloud
|
|
3570
3681
|
# @type RequestId: String
|
3571
3682
|
|
3572
3683
|
attr_accessor :IsOpen, :LicenseFrom, :LicenseTo, :RequestId
|
3573
|
-
|
3684
|
+
|
3574
3685
|
def initialize(isopen=nil, licensefrom=nil, licenseto=nil, requestid=nil)
|
3575
3686
|
@IsOpen = isopen
|
3576
3687
|
@LicenseFrom = licensefrom
|
@@ -3597,7 +3708,7 @@ module TencentCloud
|
|
3597
3708
|
# @type UserInfo: :class:`Tencentcloud::Ess.v20201111.models.UserThreeFactor`
|
3598
3709
|
|
3599
3710
|
attr_accessor :Operator, :SceneKey, :UserInfo
|
3600
|
-
|
3711
|
+
|
3601
3712
|
def initialize(operator=nil, scenekey=nil, userinfo=nil)
|
3602
3713
|
@Operator = operator
|
3603
3714
|
@SceneKey = scenekey
|
@@ -3623,7 +3734,7 @@ module TencentCloud
|
|
3623
3734
|
# @type RequestId: String
|
3624
3735
|
|
3625
3736
|
attr_accessor :RequestId
|
3626
|
-
|
3737
|
+
|
3627
3738
|
def initialize(requestid=nil)
|
3628
3739
|
@RequestId = requestid
|
3629
3740
|
end
|
@@ -3633,6 +3744,58 @@ module TencentCloud
|
|
3633
3744
|
end
|
3634
3745
|
end
|
3635
3746
|
|
3747
|
+
# 授权服务信息
|
3748
|
+
class ExtendAuthInfo < TencentCloud::Common::AbstractModel
|
3749
|
+
# @param Type: 授权服务类型
|
3750
|
+
# OPEN_SERVER_SIGN:开通企业静默签署
|
3751
|
+
# OVERSEA_SIGN:企业与港澳台居民签署合同
|
3752
|
+
# MOBILE_CHECK_APPROVER:使用手机号验证签署方身份
|
3753
|
+
# PAGING_SEAL:骑缝章
|
3754
|
+
# BATCH_SIGN:批量签署
|
3755
|
+
# @type Type: String
|
3756
|
+
# @param Name: 授权服务名称
|
3757
|
+
# @type Name: String
|
3758
|
+
# @param Status: 授权服务状态,ENABLE:开通
|
3759
|
+
# DISABLE:未开通
|
3760
|
+
# @type Status: String
|
3761
|
+
# @param OperatorUserId: 授权人用户id
|
3762
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3763
|
+
# @type OperatorUserId: String
|
3764
|
+
# @param OperateOn: 授权时间戳,单位秒
|
3765
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3766
|
+
# @type OperateOn: Integer
|
3767
|
+
# @param HasAuthUserList: 被授权用户列表
|
3768
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3769
|
+
# @type HasAuthUserList: Array
|
3770
|
+
|
3771
|
+
attr_accessor :Type, :Name, :Status, :OperatorUserId, :OperateOn, :HasAuthUserList
|
3772
|
+
|
3773
|
+
def initialize(type=nil, name=nil, status=nil, operatoruserid=nil, operateon=nil, hasauthuserlist=nil)
|
3774
|
+
@Type = type
|
3775
|
+
@Name = name
|
3776
|
+
@Status = status
|
3777
|
+
@OperatorUserId = operatoruserid
|
3778
|
+
@OperateOn = operateon
|
3779
|
+
@HasAuthUserList = hasauthuserlist
|
3780
|
+
end
|
3781
|
+
|
3782
|
+
def deserialize(params)
|
3783
|
+
@Type = params['Type']
|
3784
|
+
@Name = params['Name']
|
3785
|
+
@Status = params['Status']
|
3786
|
+
@OperatorUserId = params['OperatorUserId']
|
3787
|
+
@OperateOn = params['OperateOn']
|
3788
|
+
unless params['HasAuthUserList'].nil?
|
3789
|
+
@HasAuthUserList = []
|
3790
|
+
params['HasAuthUserList'].each do |i|
|
3791
|
+
hasauthuser_tmp = HasAuthUser.new
|
3792
|
+
hasauthuser_tmp.deserialize(i)
|
3793
|
+
@HasAuthUserList << hasauthuser_tmp
|
3794
|
+
end
|
3795
|
+
end
|
3796
|
+
end
|
3797
|
+
end
|
3798
|
+
|
3636
3799
|
# 绑定角色失败信息
|
3637
3800
|
class FailedCreateRoleData < TencentCloud::Common::AbstractModel
|
3638
3801
|
# @param UserId: 用户userId
|
@@ -3643,7 +3806,7 @@ module TencentCloud
|
|
3643
3806
|
# @type RoleIds: Array
|
3644
3807
|
|
3645
3808
|
attr_accessor :UserId, :RoleIds
|
3646
|
-
|
3809
|
+
|
3647
3810
|
def initialize(userid=nil, roleids=nil)
|
3648
3811
|
@UserId = userid
|
3649
3812
|
@RoleIds = roleids
|
@@ -3665,7 +3828,7 @@ module TencentCloud
|
|
3665
3828
|
# @type Reason: String
|
3666
3829
|
|
3667
3830
|
attr_accessor :DisplayName, :Mobile, :Reason
|
3668
|
-
|
3831
|
+
|
3669
3832
|
def initialize(displayname=nil, mobile=nil, reason=nil)
|
3670
3833
|
@DisplayName = displayname
|
3671
3834
|
@Mobile = mobile
|
@@ -3691,7 +3854,7 @@ module TencentCloud
|
|
3691
3854
|
# @type Reason: String
|
3692
3855
|
|
3693
3856
|
attr_accessor :UserId, :OpenId, :Reason
|
3694
|
-
|
3857
|
+
|
3695
3858
|
def initialize(userid=nil, openid=nil, reason=nil)
|
3696
3859
|
@UserId = userid
|
3697
3860
|
@OpenId = openid
|
@@ -3719,7 +3882,7 @@ module TencentCloud
|
|
3719
3882
|
# @type OpenId: String
|
3720
3883
|
|
3721
3884
|
attr_accessor :DisplayName, :Mobile, :Reason, :UserId, :OpenId
|
3722
|
-
|
3885
|
+
|
3723
3886
|
def initialize(displayname=nil, mobile=nil, reason=nil, userid=nil, openid=nil)
|
3724
3887
|
@DisplayName = displayname
|
3725
3888
|
@Mobile = mobile
|
@@ -3749,7 +3912,7 @@ module TencentCloud
|
|
3749
3912
|
# @type CreatedOn: Integer
|
3750
3913
|
|
3751
3914
|
attr_accessor :FileId, :FileName, :FileSize, :CreatedOn
|
3752
|
-
|
3915
|
+
|
3753
3916
|
def initialize(fileid=nil, filename=nil, filesize=nil, createdon=nil)
|
3754
3917
|
@FileId = fileid
|
3755
3918
|
@FileName = filename
|
@@ -3774,7 +3937,7 @@ module TencentCloud
|
|
3774
3937
|
# @type Option: String
|
3775
3938
|
|
3776
3939
|
attr_accessor :Url, :Option
|
3777
|
-
|
3940
|
+
|
3778
3941
|
def initialize(url=nil, option=nil)
|
3779
3942
|
@Url = url
|
3780
3943
|
@Option = option
|
@@ -3798,7 +3961,7 @@ module TencentCloud
|
|
3798
3961
|
# @type CustomUserId: String
|
3799
3962
|
|
3800
3963
|
attr_accessor :RecipientId, :ApproverSource, :CustomUserId
|
3801
|
-
|
3964
|
+
|
3802
3965
|
def initialize(recipientid=nil, approversource=nil, customuserid=nil)
|
3803
3966
|
@RecipientId = recipientid
|
3804
3967
|
@ApproverSource = approversource
|
@@ -3820,7 +3983,7 @@ module TencentCloud
|
|
3820
3983
|
# @type Values: Array
|
3821
3984
|
|
3822
3985
|
attr_accessor :Key, :Values
|
3823
|
-
|
3986
|
+
|
3824
3987
|
def initialize(key=nil, values=nil)
|
3825
3988
|
@Key = key
|
3826
3989
|
@Values = values
|
@@ -3882,7 +4045,7 @@ module TencentCloud
|
|
3882
4045
|
# @type OrganizationName: String
|
3883
4046
|
|
3884
4047
|
attr_accessor :ApproveMessage, :ApproveName, :ApproveStatus, :ReceiptId, :CustomUserId, :Mobile, :SignOrder, :ApproveTime, :ApproveType, :ApproverSource, :CustomApproverTag, :OrganizationId, :OrganizationName
|
3885
|
-
|
4048
|
+
|
3886
4049
|
def initialize(approvemessage=nil, approvename=nil, approvestatus=nil, receiptid=nil, customuserid=nil, mobile=nil, signorder=nil, approvetime=nil, approvetype=nil, approversource=nil, customapprovertag=nil, organizationid=nil, organizationname=nil)
|
3887
4050
|
@ApproveMessage = approvemessage
|
3888
4051
|
@ApproveName = approvename
|
@@ -3935,7 +4098,7 @@ module TencentCloud
|
|
3935
4098
|
# @type LongUrl: String
|
3936
4099
|
|
3937
4100
|
attr_accessor :SignUrl, :ApproverType, :ApproverName, :ApproverMobile, :LongUrl
|
3938
|
-
|
4101
|
+
|
3939
4102
|
def initialize(signurl=nil, approvertype=nil, approvername=nil, approvermobile=nil, longurl=nil)
|
3940
4103
|
@SignUrl = signurl
|
3941
4104
|
@ApproverType = approvertype
|
@@ -3993,7 +4156,7 @@ module TencentCloud
|
|
3993
4156
|
# @type Deadline: Integer
|
3994
4157
|
|
3995
4158
|
attr_accessor :FlowId, :FlowName, :FlowDescription, :FlowType, :FlowStatus, :CreatedOn, :FlowMessage, :Creator, :Deadline
|
3996
|
-
|
4159
|
+
|
3997
4160
|
def initialize(flowid=nil, flowname=nil, flowdescription=nil, flowtype=nil, flowstatus=nil, createdon=nil, flowmessage=nil, creator=nil, deadline=nil)
|
3998
4161
|
@FlowId = flowid
|
3999
4162
|
@FlowName = flowname
|
@@ -4069,7 +4232,10 @@ module TencentCloud
|
|
4069
4232
|
# @type SignId: String
|
4070
4233
|
|
4071
4234
|
attr_accessor :ApproverType, :OrganizationName, :ApproverName, :ApproverMobile, :ApproverIdCardType, :ApproverIdCardNumber, :RecipientId, :VerifyChannel, :NotifyType, :IsFullText, :PreReadTime, :UserId, :Required, :ApproverSource, :CustomApproverTag, :RegisterInfo, :ApproverOption, :JumpUrl, :SignId
|
4072
|
-
|
4235
|
+
extend Gem::Deprecate
|
4236
|
+
deprecate :JumpUrl, :none, 2023, 6
|
4237
|
+
deprecate :JumpUrl=, :none, 2023, 6
|
4238
|
+
|
4073
4239
|
def initialize(approvertype=nil, organizationname=nil, approvername=nil, approvermobile=nil, approveridcardtype=nil, approveridcardnumber=nil, recipientid=nil, verifychannel=nil, notifytype=nil, isfulltext=nil, prereadtime=nil, userid=nil, required=nil, approversource=nil, customapprovertag=nil, registerinfo=nil, approveroption=nil, jumpurl=nil, signid=nil)
|
4074
4240
|
@ApproverType = approvertype
|
4075
4241
|
@OrganizationName = organizationname
|
@@ -4161,7 +4327,7 @@ module TencentCloud
|
|
4161
4327
|
# @type Creator: String
|
4162
4328
|
|
4163
4329
|
attr_accessor :FlowId, :FlowName, :FlowType, :FlowStatus, :FlowMessage, :FlowDescription, :CreatedOn, :FlowApproverInfos, :CcInfos, :Creator
|
4164
|
-
|
4330
|
+
|
4165
4331
|
def initialize(flowid=nil, flowname=nil, flowtype=nil, flowstatus=nil, flowmessage=nil, flowdescription=nil, createdon=nil, flowapproverinfos=nil, ccinfos=nil, creator=nil)
|
4166
4332
|
@FlowId = flowid
|
4167
4333
|
@FlowName = flowname
|
@@ -4329,7 +4495,7 @@ module TencentCloud
|
|
4329
4495
|
# @type ComponentName: String
|
4330
4496
|
|
4331
4497
|
attr_accessor :ComponentValue, :ComponentId, :ComponentName
|
4332
|
-
|
4498
|
+
|
4333
4499
|
def initialize(componentvalue=nil, componentid=nil, componentname=nil)
|
4334
4500
|
@ComponentValue = componentvalue
|
4335
4501
|
@ComponentId = componentid
|
@@ -4355,7 +4521,12 @@ module TencentCloud
|
|
4355
4521
|
# @type Organization: :class:`Tencentcloud::Ess.v20201111.models.OrganizationInfo`
|
4356
4522
|
|
4357
4523
|
attr_accessor :TaskId, :Operator, :Agent, :Organization
|
4358
|
-
|
4524
|
+
extend Gem::Deprecate
|
4525
|
+
deprecate :Agent, :none, 2023, 6
|
4526
|
+
deprecate :Agent=, :none, 2023, 6
|
4527
|
+
deprecate :Organization, :none, 2023, 6
|
4528
|
+
deprecate :Organization=, :none, 2023, 6
|
4529
|
+
|
4359
4530
|
def initialize(taskid=nil, operator=nil, agent=nil, organization=nil)
|
4360
4531
|
@TaskId = taskid
|
4361
4532
|
@Operator = operator
|
@@ -4406,7 +4577,7 @@ module TencentCloud
|
|
4406
4577
|
# @type RequestId: String
|
4407
4578
|
|
4408
4579
|
attr_accessor :TaskId, :TaskStatus, :TaskMessage, :ResourceId, :RequestId
|
4409
|
-
|
4580
|
+
|
4410
4581
|
def initialize(taskid=nil, taskstatus=nil, taskmessage=nil, resourceid=nil, requestid=nil)
|
4411
4582
|
@TaskId = taskid
|
4412
4583
|
@TaskStatus = taskstatus
|
@@ -4464,7 +4635,7 @@ module TencentCloud
|
|
4464
4635
|
# @type FlowEngineEnable: Boolean
|
4465
4636
|
|
4466
4637
|
attr_accessor :Name, :Alias, :OrganizationId, :UpdateTime, :Status, :IsMainOrganization, :IdCardNumber, :AdminInfo, :License, :LicenseExpireTime, :JoinTime, :FlowEngineEnable
|
4467
|
-
|
4638
|
+
|
4468
4639
|
def initialize(name=nil, _alias=nil, organizationid=nil, updatetime=nil, status=nil, ismainorganization=nil, idcardnumber=nil, admininfo=nil, license=nil, licenseexpiretime=nil, jointime=nil, flowengineenable=nil)
|
4469
4640
|
@Name = name
|
4470
4641
|
@Alias = _alias
|
@@ -4499,6 +4670,30 @@ module TencentCloud
|
|
4499
4670
|
end
|
4500
4671
|
end
|
4501
4672
|
|
4673
|
+
# 被授权用户信息
|
4674
|
+
class HasAuthUser < TencentCloud::Common::AbstractModel
|
4675
|
+
# @param UserId: 用户id
|
4676
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4677
|
+
# @type UserId: String
|
4678
|
+
# @param BelongTo: 用户归属
|
4679
|
+
# MainOrg:主企业
|
4680
|
+
# CurrentOrg:当前企业
|
4681
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4682
|
+
# @type BelongTo: String
|
4683
|
+
|
4684
|
+
attr_accessor :UserId, :BelongTo
|
4685
|
+
|
4686
|
+
def initialize(userid=nil, belongto=nil)
|
4687
|
+
@UserId = userid
|
4688
|
+
@BelongTo = belongto
|
4689
|
+
end
|
4690
|
+
|
4691
|
+
def deserialize(params)
|
4692
|
+
@UserId = params['UserId']
|
4693
|
+
@BelongTo = params['BelongTo']
|
4694
|
+
end
|
4695
|
+
end
|
4696
|
+
|
4502
4697
|
# 企业角色数据信息
|
4503
4698
|
class IntegrateRole < TencentCloud::Common::AbstractModel
|
4504
4699
|
# @param RoleId: 角色id
|
@@ -4518,7 +4713,7 @@ module TencentCloud
|
|
4518
4713
|
# @type SubOrgIdList: Array
|
4519
4714
|
|
4520
4715
|
attr_accessor :RoleId, :RoleName, :RoleStatus, :IsGroupRole, :SubOrgIdList
|
4521
|
-
|
4716
|
+
|
4522
4717
|
def initialize(roleid=nil, rolename=nil, rolestatus=nil, isgrouprole=nil, suborgidlist=nil)
|
4523
4718
|
@RoleId = roleid
|
4524
4719
|
@RoleName = rolename
|
@@ -4555,7 +4750,7 @@ module TencentCloud
|
|
4555
4750
|
# @type OrderNo: Integer
|
4556
4751
|
|
4557
4752
|
attr_accessor :DeptId, :DeptName, :ParentDeptId, :DeptOpenId, :OrderNo
|
4558
|
-
|
4753
|
+
|
4559
4754
|
def initialize(deptid=nil, deptname=nil, parentdeptid=nil, deptopenid=nil, orderno=nil)
|
4560
4755
|
@DeptId = deptid
|
4561
4756
|
@DeptName = deptname
|
@@ -4586,7 +4781,7 @@ module TencentCloud
|
|
4586
4781
|
# @type UserName: String
|
4587
4782
|
|
4588
4783
|
attr_accessor :MainOrganizationId, :MainUserId, :UserName
|
4589
|
-
|
4784
|
+
|
4590
4785
|
def initialize(mainorganizationid=nil, mainuserid=nil, username=nil)
|
4591
4786
|
@MainOrganizationId = mainorganizationid
|
4592
4787
|
@MainUserId = mainuserid
|
@@ -4610,7 +4805,7 @@ module TencentCloud
|
|
4610
4805
|
# @type CallbackInfo: :class:`Tencentcloud::Ess.v20201111.models.CallbackInfo`
|
4611
4806
|
|
4612
4807
|
attr_accessor :Operator, :OperateType, :CallbackInfo
|
4613
|
-
|
4808
|
+
|
4614
4809
|
def initialize(operator=nil, operatetype=nil, callbackinfo=nil)
|
4615
4810
|
@Operator = operator
|
4616
4811
|
@OperateType = operatetype
|
@@ -4636,7 +4831,7 @@ module TencentCloud
|
|
4636
4831
|
# @type RequestId: String
|
4637
4832
|
|
4638
4833
|
attr_accessor :RequestId
|
4639
|
-
|
4834
|
+
|
4640
4835
|
def initialize(requestid=nil)
|
4641
4836
|
@RequestId = requestid
|
4642
4837
|
end
|
@@ -4662,7 +4857,7 @@ module TencentCloud
|
|
4662
4857
|
# @type OrderNo: Integer
|
4663
4858
|
|
4664
4859
|
attr_accessor :Operator, :DeptId, :ParentDeptId, :DeptName, :DeptOpenId, :OrderNo
|
4665
|
-
|
4860
|
+
|
4666
4861
|
def initialize(operator=nil, deptid=nil, parentdeptid=nil, deptname=nil, deptopenid=nil, orderno=nil)
|
4667
4862
|
@Operator = operator
|
4668
4863
|
@DeptId = deptid
|
@@ -4691,7 +4886,7 @@ module TencentCloud
|
|
4691
4886
|
# @type RequestId: String
|
4692
4887
|
|
4693
4888
|
attr_accessor :RequestId
|
4694
|
-
|
4889
|
+
|
4695
4890
|
def initialize(requestid=nil)
|
4696
4891
|
@RequestId = requestid
|
4697
4892
|
end
|
@@ -4729,7 +4924,7 @@ module TencentCloud
|
|
4729
4924
|
# @type AuthorizedUsers: Array
|
4730
4925
|
|
4731
4926
|
attr_accessor :SealId, :SealName, :CreateOn, :Creator, :SealPolicyId, :SealStatus, :FailReason, :Url, :SealType, :IsAllTime, :AuthorizedUsers
|
4732
|
-
|
4927
|
+
|
4733
4928
|
def initialize(sealid=nil, sealname=nil, createon=nil, creator=nil, sealpolicyid=nil, sealstatus=nil, failreason=nil, url=nil, sealtype=nil, isalltime=nil, authorizedusers=nil)
|
4734
4929
|
@SealId = sealid
|
4735
4930
|
@SealName = sealname
|
@@ -4780,7 +4975,18 @@ module TencentCloud
|
|
4780
4975
|
# @type ProxyIp: String
|
4781
4976
|
|
4782
4977
|
attr_accessor :OrganizationId, :Channel, :OrganizationOpenId, :ClientIp, :ProxyIp
|
4783
|
-
|
4978
|
+
extend Gem::Deprecate
|
4979
|
+
deprecate :OrganizationId, :none, 2023, 6
|
4980
|
+
deprecate :OrganizationId=, :none, 2023, 6
|
4981
|
+
deprecate :Channel, :none, 2023, 6
|
4982
|
+
deprecate :Channel=, :none, 2023, 6
|
4983
|
+
deprecate :OrganizationOpenId, :none, 2023, 6
|
4984
|
+
deprecate :OrganizationOpenId=, :none, 2023, 6
|
4985
|
+
deprecate :ClientIp, :none, 2023, 6
|
4986
|
+
deprecate :ClientIp=, :none, 2023, 6
|
4987
|
+
deprecate :ProxyIp, :none, 2023, 6
|
4988
|
+
deprecate :ProxyIp=, :none, 2023, 6
|
4989
|
+
|
4784
4990
|
def initialize(organizationid=nil, channel=nil, organizationopenid=nil, clientip=nil, proxyip=nil)
|
4785
4991
|
@OrganizationId = organizationid
|
4786
4992
|
@Channel = channel
|
@@ -4828,7 +5034,7 @@ module TencentCloud
|
|
4828
5034
|
# @type ComponentPage: Integer
|
4829
5035
|
|
4830
5036
|
attr_accessor :VerifyResult, :SignPlatform, :SignerName, :SignTime, :SignAlgorithm, :CertSn, :CertNotBefore, :CertNotAfter, :ComponentPosX, :ComponentPosY, :ComponentWidth, :ComponentHeight, :ComponentPage
|
4831
|
-
|
5037
|
+
|
4832
5038
|
def initialize(verifyresult=nil, signplatform=nil, signername=nil, signtime=nil, signalgorithm=nil, certsn=nil, certnotbefore=nil, certnotafter=nil, componentposx=nil, componentposy=nil, componentwidth=nil, componentheight=nil, componentpage=nil)
|
4833
5039
|
@VerifyResult = verifyresult
|
4834
5040
|
@SignPlatform = signplatform
|
@@ -4892,7 +5098,7 @@ module TencentCloud
|
|
4892
5098
|
# @type RecipientExtra: String
|
4893
5099
|
|
4894
5100
|
attr_accessor :RecipientId, :RecipientType, :Description, :RoleName, :RequireValidation, :RequireSign, :RoutingOrder, :RequireDelivery, :Email, :Mobile, :UserId, :DeliveryMethod, :RecipientExtra
|
4895
|
-
|
5101
|
+
|
4896
5102
|
def initialize(recipientid=nil, recipienttype=nil, description=nil, rolename=nil, requirevalidation=nil, requiresign=nil, routingorder=nil, requiredelivery=nil, email=nil, mobile=nil, userid=nil, deliverymethod=nil, recipientextra=nil)
|
4897
5103
|
@RecipientId = recipientid
|
4898
5104
|
@RecipientType = recipienttype
|
@@ -4934,7 +5140,7 @@ module TencentCloud
|
|
4934
5140
|
# @type Uscc: String
|
4935
5141
|
|
4936
5142
|
attr_accessor :LegalName, :Uscc
|
4937
|
-
|
5143
|
+
|
4938
5144
|
def initialize(legalname=nil, uscc=nil)
|
4939
5145
|
@LegalName = legalname
|
4940
5146
|
@Uscc = uscc
|
@@ -4961,7 +5167,7 @@ module TencentCloud
|
|
4961
5167
|
# @type ApproverType: String
|
4962
5168
|
|
4963
5169
|
attr_accessor :Name, :Mobile, :RelievedApproverReceiptId, :ApproverType
|
4964
|
-
|
5170
|
+
|
4965
5171
|
def initialize(name=nil, mobile=nil, relievedapproverreceiptid=nil, approvertype=nil)
|
4966
5172
|
@Name = name
|
4967
5173
|
@Mobile = mobile
|
@@ -4991,7 +5197,7 @@ module TencentCloud
|
|
4991
5197
|
# @type OtherDeals: String
|
4992
5198
|
|
4993
5199
|
attr_accessor :Reason, :RemainInForceItem, :OriginalExpenseSettlement, :OriginalOtherSettlement, :OtherDeals
|
4994
|
-
|
5200
|
+
|
4995
5201
|
def initialize(reason=nil, remaininforceitem=nil, originalexpensesettlement=nil, originalothersettlement=nil, otherdeals=nil)
|
4996
5202
|
@Reason = reason
|
4997
5203
|
@RemainInForceItem = remaininforceitem
|
@@ -5019,7 +5225,7 @@ module TencentCloud
|
|
5019
5225
|
# @type RemindMessage: String
|
5020
5226
|
|
5021
5227
|
attr_accessor :CanRemind, :FlowId, :RemindMessage
|
5022
|
-
|
5228
|
+
|
5023
5229
|
def initialize(canremind=nil, flowid=nil, remindmessage=nil)
|
5024
5230
|
@CanRemind = canremind
|
5025
5231
|
@FlowId = flowid
|
@@ -5033,6 +5239,17 @@ module TencentCloud
|
|
5033
5239
|
end
|
5034
5240
|
end
|
5035
5241
|
|
5242
|
+
# 模板结构体中的印章信息
|
5243
|
+
class SealInfo < TencentCloud::Common::AbstractModel
|
5244
|
+
|
5245
|
+
|
5246
|
+
def initialize()
|
5247
|
+
end
|
5248
|
+
|
5249
|
+
def deserialize(params)
|
5250
|
+
end
|
5251
|
+
end
|
5252
|
+
|
5036
5253
|
# 一码多扫签署二维码对象
|
5037
5254
|
class SignQrCode < TencentCloud::Common::AbstractModel
|
5038
5255
|
# @param QrCodeId: 二维码id
|
@@ -5043,7 +5260,7 @@ module TencentCloud
|
|
5043
5260
|
# @type ExpiredTime: Integer
|
5044
5261
|
|
5045
5262
|
attr_accessor :QrCodeId, :QrCodeUrl, :ExpiredTime
|
5046
|
-
|
5263
|
+
|
5047
5264
|
def initialize(qrcodeid=nil, qrcodeurl=nil, expiredtime=nil)
|
5048
5265
|
@QrCodeId = qrcodeid
|
5049
5266
|
@QrCodeUrl = qrcodeurl
|
@@ -5067,7 +5284,7 @@ module TencentCloud
|
|
5067
5284
|
# @type HttpSignUrl: String
|
5068
5285
|
|
5069
5286
|
attr_accessor :AppSignUrl, :EffectiveTime, :HttpSignUrl
|
5070
|
-
|
5287
|
+
|
5071
5288
|
def initialize(appsignurl=nil, effectivetime=nil, httpsignurl=nil)
|
5072
5289
|
@AppSignUrl = appsignurl
|
5073
5290
|
@EffectiveTime = effectivetime
|
@@ -5117,7 +5334,7 @@ module TencentCloud
|
|
5117
5334
|
# @type ReceiveOpenId: String
|
5118
5335
|
|
5119
5336
|
attr_accessor :UserId, :DisplayName, :Mobile, :Email, :OpenId, :Roles, :Department, :Verified, :CreatedOn, :VerifiedOn, :QuiteJob, :ReceiveUserId, :ReceiveOpenId
|
5120
|
-
|
5337
|
+
|
5121
5338
|
def initialize(userid=nil, displayname=nil, mobile=nil, email=nil, openid=nil, roles=nil, department=nil, verified=nil, createdon=nil, verifiedon=nil, quitejob=nil, receiveuserid=nil, receiveopenid=nil)
|
5122
5339
|
@UserId = userid
|
5123
5340
|
@DisplayName = displayname
|
@@ -5171,7 +5388,7 @@ module TencentCloud
|
|
5171
5388
|
# @type RoleName: String
|
5172
5389
|
|
5173
5390
|
attr_accessor :RoleId, :RoleName
|
5174
|
-
|
5391
|
+
|
5175
5392
|
def initialize(roleid=nil, rolename=nil)
|
5176
5393
|
@RoleId = roleid
|
5177
5394
|
@RoleName = rolename
|
@@ -5197,7 +5414,7 @@ module TencentCloud
|
|
5197
5414
|
# @type CcNotifyType: Integer
|
5198
5415
|
|
5199
5416
|
attr_accessor :Operator, :FlowId, :ClientToken, :Agent, :CcNotifyType
|
5200
|
-
|
5417
|
+
|
5201
5418
|
def initialize(operator=nil, flowid=nil, clienttoken=nil, agent=nil, ccnotifytype=nil)
|
5202
5419
|
@Operator = operator
|
5203
5420
|
@FlowId = flowid
|
@@ -5229,7 +5446,7 @@ module TencentCloud
|
|
5229
5446
|
# @type RequestId: String
|
5230
5447
|
|
5231
5448
|
attr_accessor :Status, :RequestId
|
5232
|
-
|
5449
|
+
|
5233
5450
|
def initialize(status=nil, requestid=nil)
|
5234
5451
|
@Status = status
|
5235
5452
|
@RequestId = requestid
|
@@ -5254,7 +5471,7 @@ module TencentCloud
|
|
5254
5471
|
# @type Note: String
|
5255
5472
|
|
5256
5473
|
attr_accessor :DisplayName, :Mobile, :UserId, :Note
|
5257
|
-
|
5474
|
+
|
5258
5475
|
def initialize(displayname=nil, mobile=nil, userid=nil, note=nil)
|
5259
5476
|
@DisplayName = displayname
|
5260
5477
|
@Mobile = mobile
|
@@ -5280,7 +5497,7 @@ module TencentCloud
|
|
5280
5497
|
# @type UserId: String
|
5281
5498
|
|
5282
5499
|
attr_accessor :DisplayName, :Mobile, :UserId
|
5283
|
-
|
5500
|
+
|
5284
5501
|
def initialize(displayname=nil, mobile=nil, userid=nil)
|
5285
5502
|
@DisplayName = displayname
|
5286
5503
|
@Mobile = mobile
|
@@ -5304,7 +5521,7 @@ module TencentCloud
|
|
5304
5521
|
# @type UserId: String
|
5305
5522
|
|
5306
5523
|
attr_accessor :DisplayName, :Mobile, :UserId
|
5307
|
-
|
5524
|
+
|
5308
5525
|
def initialize(displayname=nil, mobile=nil, userid=nil)
|
5309
5526
|
@DisplayName = displayname
|
5310
5527
|
@Mobile = mobile
|
@@ -5366,10 +5583,19 @@ module TencentCloud
|
|
5366
5583
|
# @param Published: 模板是否已发布。true-已发布;false-未发布
|
5367
5584
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5368
5585
|
# @type Published: Boolean
|
5586
|
+
# @param TemplateSeals: 模板内部指定的印章列表
|
5587
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5588
|
+
# @type TemplateSeals: Array
|
5589
|
+
# @param Seals: 模板内部指定的印章列表
|
5590
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5591
|
+
# @type Seals: Array
|
5369
5592
|
|
5370
|
-
attr_accessor :TemplateId, :TemplateName, :Description, :DocumentResourceIds, :FileInfos, :AttachmentResourceIds, :SignOrder, :Recipients, :Components, :SignComponents, :Status, :Creator, :CreatedOn, :Promoter, :TemplateType, :Available, :OrganizationId, :PreviewUrl, :TemplateVersion, :Published
|
5371
|
-
|
5372
|
-
|
5593
|
+
attr_accessor :TemplateId, :TemplateName, :Description, :DocumentResourceIds, :FileInfos, :AttachmentResourceIds, :SignOrder, :Recipients, :Components, :SignComponents, :Status, :Creator, :CreatedOn, :Promoter, :TemplateType, :Available, :OrganizationId, :PreviewUrl, :TemplateVersion, :Published, :TemplateSeals, :Seals
|
5594
|
+
extend Gem::Deprecate
|
5595
|
+
deprecate :Seals, :none, 2023, 6
|
5596
|
+
deprecate :Seals=, :none, 2023, 6
|
5597
|
+
|
5598
|
+
def initialize(templateid=nil, templatename=nil, description=nil, documentresourceids=nil, fileinfos=nil, attachmentresourceids=nil, signorder=nil, recipients=nil, components=nil, signcomponents=nil, status=nil, creator=nil, createdon=nil, promoter=nil, templatetype=nil, available=nil, organizationid=nil, previewurl=nil, templateversion=nil, published=nil, templateseals=nil, seals=nil)
|
5373
5599
|
@TemplateId = templateid
|
5374
5600
|
@TemplateName = templatename
|
5375
5601
|
@Description = description
|
@@ -5390,6 +5616,8 @@ module TencentCloud
|
|
5390
5616
|
@PreviewUrl = previewurl
|
5391
5617
|
@TemplateVersion = templateversion
|
5392
5618
|
@Published = published
|
5619
|
+
@TemplateSeals = templateseals
|
5620
|
+
@Seals = seals
|
5393
5621
|
end
|
5394
5622
|
|
5395
5623
|
def deserialize(params)
|
@@ -5444,6 +5672,22 @@ module TencentCloud
|
|
5444
5672
|
@PreviewUrl = params['PreviewUrl']
|
5445
5673
|
@TemplateVersion = params['TemplateVersion']
|
5446
5674
|
@Published = params['Published']
|
5675
|
+
unless params['TemplateSeals'].nil?
|
5676
|
+
@TemplateSeals = []
|
5677
|
+
params['TemplateSeals'].each do |i|
|
5678
|
+
sealinfo_tmp = SealInfo.new
|
5679
|
+
sealinfo_tmp.deserialize(i)
|
5680
|
+
@TemplateSeals << sealinfo_tmp
|
5681
|
+
end
|
5682
|
+
end
|
5683
|
+
unless params['Seals'].nil?
|
5684
|
+
@Seals = []
|
5685
|
+
params['Seals'].each do |i|
|
5686
|
+
sealinfo_tmp = SealInfo.new
|
5687
|
+
sealinfo_tmp.deserialize(i)
|
5688
|
+
@Seals << sealinfo_tmp
|
5689
|
+
end
|
5690
|
+
end
|
5447
5691
|
end
|
5448
5692
|
end
|
5449
5693
|
|
@@ -5457,7 +5701,7 @@ module TencentCloud
|
|
5457
5701
|
# @type OpenId: String
|
5458
5702
|
|
5459
5703
|
attr_accessor :Operator, :UserId, :OpenId
|
5460
|
-
|
5704
|
+
|
5461
5705
|
def initialize(operator=nil, userid=nil, openid=nil)
|
5462
5706
|
@Operator = operator
|
5463
5707
|
@UserId = userid
|
@@ -5482,7 +5726,7 @@ module TencentCloud
|
|
5482
5726
|
# @type RequestId: String
|
5483
5727
|
|
5484
5728
|
attr_accessor :Status, :RequestId
|
5485
|
-
|
5729
|
+
|
5486
5730
|
def initialize(status=nil, requestid=nil)
|
5487
5731
|
@Status = status
|
5488
5732
|
@RequestId = requestid
|
@@ -5496,15 +5740,15 @@ module TencentCloud
|
|
5496
5740
|
|
5497
5741
|
# UpdateIntegrationEmployees请求参数结构体
|
5498
5742
|
class UpdateIntegrationEmployeesRequest < TencentCloud::Common::AbstractModel
|
5499
|
-
# @param Operator:
|
5743
|
+
# @param Operator: 操作人信息,userId必填
|
5500
5744
|
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
5501
|
-
# @param Employees:
|
5745
|
+
# @param Employees: 员工信息,OpenId和UserId必填一个,Email、DisplayName和Email选填,其他字段暂不支持
|
5502
5746
|
# @type Employees: Array
|
5503
5747
|
# @param Agent: 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId需填充子企业Id
|
5504
5748
|
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
5505
5749
|
|
5506
5750
|
attr_accessor :Operator, :Employees, :Agent
|
5507
|
-
|
5751
|
+
|
5508
5752
|
def initialize(operator=nil, employees=nil, agent=nil)
|
5509
5753
|
@Operator = operator
|
5510
5754
|
@Employees = employees
|
@@ -5541,7 +5785,7 @@ module TencentCloud
|
|
5541
5785
|
# @type RequestId: String
|
5542
5786
|
|
5543
5787
|
attr_accessor :SuccessEmployeeData, :FailedEmployeeData, :RequestId
|
5544
|
-
|
5788
|
+
|
5545
5789
|
def initialize(successemployeedata=nil, failedemployeedata=nil, requestid=nil)
|
5546
5790
|
@SuccessEmployeeData = successemployeedata
|
5547
5791
|
@FailedEmployeeData = failedemployeedata
|
@@ -5577,7 +5821,7 @@ module TencentCloud
|
|
5577
5821
|
# @type FileName: String
|
5578
5822
|
|
5579
5823
|
attr_accessor :FileBody, :FileName
|
5580
|
-
|
5824
|
+
|
5581
5825
|
def initialize(filebody=nil, filename=nil)
|
5582
5826
|
@FileBody = filebody
|
5583
5827
|
@FileName = filename
|
@@ -5613,7 +5857,10 @@ module TencentCloud
|
|
5613
5857
|
# @type FileUrls: String
|
5614
5858
|
|
5615
5859
|
attr_accessor :BusinessType, :Caller, :FileInfos, :FileType, :CoverRect, :CustomIds, :FileUrls
|
5616
|
-
|
5860
|
+
extend Gem::Deprecate
|
5861
|
+
deprecate :FileUrls, :none, 2023, 6
|
5862
|
+
deprecate :FileUrls=, :none, 2023, 6
|
5863
|
+
|
5617
5864
|
def initialize(businesstype=nil, caller=nil, fileinfos=nil, filetype=nil, coverrect=nil, customids=nil, fileurls=nil)
|
5618
5865
|
@BusinessType = businesstype
|
5619
5866
|
@Caller = caller
|
@@ -5655,7 +5902,7 @@ module TencentCloud
|
|
5655
5902
|
# @type RequestId: String
|
5656
5903
|
|
5657
5904
|
attr_accessor :FileIds, :TotalCount, :RequestId
|
5658
|
-
|
5905
|
+
|
5659
5906
|
def initialize(fileids=nil, totalcount=nil, requestid=nil)
|
5660
5907
|
@FileIds = fileids
|
5661
5908
|
@TotalCount = totalcount
|
@@ -5683,7 +5930,16 @@ module TencentCloud
|
|
5683
5930
|
# @type ProxyIp: String
|
5684
5931
|
|
5685
5932
|
attr_accessor :UserId, :Channel, :OpenId, :ClientIp, :ProxyIp
|
5686
|
-
|
5933
|
+
extend Gem::Deprecate
|
5934
|
+
deprecate :Channel, :none, 2023, 6
|
5935
|
+
deprecate :Channel=, :none, 2023, 6
|
5936
|
+
deprecate :OpenId, :none, 2023, 6
|
5937
|
+
deprecate :OpenId=, :none, 2023, 6
|
5938
|
+
deprecate :ClientIp, :none, 2023, 6
|
5939
|
+
deprecate :ClientIp=, :none, 2023, 6
|
5940
|
+
deprecate :ProxyIp, :none, 2023, 6
|
5941
|
+
deprecate :ProxyIp=, :none, 2023, 6
|
5942
|
+
|
5687
5943
|
def initialize(userid=nil, channel=nil, openid=nil, clientip=nil, proxyip=nil)
|
5688
5944
|
@UserId = userid
|
5689
5945
|
@Channel = channel
|
@@ -5714,7 +5970,7 @@ module TencentCloud
|
|
5714
5970
|
# @type IdCardNumber: String
|
5715
5971
|
|
5716
5972
|
attr_accessor :Name, :IdCardType, :IdCardNumber
|
5717
|
-
|
5973
|
+
|
5718
5974
|
def initialize(name=nil, idcardtype=nil, idcardnumber=nil)
|
5719
5975
|
@Name = name
|
5720
5976
|
@IdCardType = idcardtype
|
@@ -5736,7 +5992,7 @@ module TencentCloud
|
|
5736
5992
|
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
5737
5993
|
|
5738
5994
|
attr_accessor :FlowId, :Operator
|
5739
|
-
|
5995
|
+
|
5740
5996
|
def initialize(flowid=nil, operator=nil)
|
5741
5997
|
@FlowId = flowid
|
5742
5998
|
@Operator = operator
|
@@ -5763,7 +6019,7 @@ module TencentCloud
|
|
5763
6019
|
# @type RequestId: String
|
5764
6020
|
|
5765
6021
|
attr_accessor :VerifyResult, :PdfVerifyResults, :VerifySerialNo, :RequestId
|
5766
|
-
|
6022
|
+
|
5767
6023
|
def initialize(verifyresult=nil, pdfverifyresults=nil, verifyserialno=nil, requestid=nil)
|
5768
6024
|
@VerifyResult = verifyresult
|
5769
6025
|
@PdfVerifyResults = pdfverifyresults
|