tencentcloud-sdk-ess 3.0.498 → 3.0.500

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ca85d1ecb61921eea76c630e505f2d955eaf90c8
4
- data.tar.gz: 1e64a84f28e434d8c98d7eba02b8314e98dbaaa9
3
+ metadata.gz: 083240356e2a50f8db990f4885b781d439c14fb4
4
+ data.tar.gz: c7eb73ed952081ed7f1718371cf35dcf425a179d
5
5
  SHA512:
6
- metadata.gz: 1384ca8bf9b2efdc01a6d16a5a288a1ea835cc08ec98bf30ae4a6b6d544067724d6c25f22753ca10133a386c8d769e5a3ec62dcbc12ad65924768c957e414e51
7
- data.tar.gz: 334803913db426d1ad3f780f474acbd01cecde0dd9fa488eb0f7fadecb3ab43dd1e90440e0fb78a45991506d869c591bccc1791d4e2a1e014f159336b28d4d0f
6
+ metadata.gz: 391c1a653160d07587c22bd9386e69845f6e6a368a2de958969bb9f7e955598665de4b892e851a57a88bc482f6184767040327a9aa0d7ceb11ccf094a3dac96f
7
+ data.tar.gz: 18059826ea45f7017dcc5bcb962bd2ac406a5bc5ccb09861cbc6753d32e4a0fffac38084c8a8c15c839243a4c8caf708376afabb35b23688bf6232ce8d65826b
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.498
1
+ 3.0.500
@@ -261,6 +261,32 @@ module TencentCloud
261
261
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
262
262
  end
263
263
 
264
+ # 指定需要批量催办的签署流程Id,批量催办合同,最多100个; 接口失败后返回错误信息
265
+ # 注意:
266
+ # 该接口需要开白后使用
267
+
268
+ # @param request: Request instance for CreateFlowReminds.
269
+ # @type request: :class:`Tencentcloud::ess::V20201111::CreateFlowRemindsRequest`
270
+ # @rtype: :class:`Tencentcloud::ess::V20201111::CreateFlowRemindsResponse`
271
+ def CreateFlowReminds(request)
272
+ body = send_request('CreateFlowReminds', request.serialize)
273
+ response = JSON.parse(body)
274
+ if response['Response'].key?('Error') == false
275
+ model = CreateFlowRemindsResponse.new
276
+ model.deserialize(response['Response'])
277
+ model
278
+ else
279
+ code = response['Response']['Error']['Code']
280
+ message = response['Response']['Error']['Message']
281
+ reqid = response['Response']['RequestId']
282
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
283
+ end
284
+ rescue TencentCloud::Common::TencentCloudSDKException => e
285
+ raise e
286
+ rescue StandardError => e
287
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
288
+ end
289
+
264
290
  # 提交企业签署流程审批结果
265
291
  # 适用场景:
266
292
  # 在通过接口(CreateFlow 或者CreateFlowByFiles)创建签署流程时,若指定了参数 NeedSignReview 为true,且发起方企业作为签署方参与了流程签署,则可以调用此接口提交企业内部签署审批结果。
@@ -1002,6 +1002,56 @@ module TencentCloud
1002
1002
  end
1003
1003
  end
1004
1004
 
1005
+ # CreateFlowReminds请求参数结构体
1006
+ class CreateFlowRemindsRequest < TencentCloud::Common::AbstractModel
1007
+ # @param Operator: 调用方用户信息,userId 必填
1008
+ # @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
1009
+ # @param FlowIds: 需要执行撤回的签署流程id数组,最多100个
1010
+ # @type FlowIds: Array
1011
+
1012
+ attr_accessor :Operator, :FlowIds
1013
+
1014
+ def initialize(operator=nil, flowids=nil)
1015
+ @Operator = operator
1016
+ @FlowIds = flowids
1017
+ end
1018
+
1019
+ def deserialize(params)
1020
+ unless params['Operator'].nil?
1021
+ @Operator = UserInfo.new
1022
+ @Operator.deserialize(params['Operator'])
1023
+ end
1024
+ @FlowIds = params['FlowIds']
1025
+ end
1026
+ end
1027
+
1028
+ # CreateFlowReminds返回参数结构体
1029
+ class CreateFlowRemindsResponse < TencentCloud::Common::AbstractModel
1030
+ # @param RemindFlowRecords: 签署连接过期时间字符串:年月日-时分秒
1031
+ # @type RemindFlowRecords: Array
1032
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1033
+ # @type RequestId: String
1034
+
1035
+ attr_accessor :RemindFlowRecords, :RequestId
1036
+
1037
+ def initialize(remindflowrecords=nil, requestid=nil)
1038
+ @RemindFlowRecords = remindflowrecords
1039
+ @RequestId = requestid
1040
+ end
1041
+
1042
+ def deserialize(params)
1043
+ unless params['RemindFlowRecords'].nil?
1044
+ @RemindFlowRecords = []
1045
+ params['RemindFlowRecords'].each do |i|
1046
+ remindflowrecords_tmp = RemindFlowRecords.new
1047
+ remindflowrecords_tmp.deserialize(i)
1048
+ @RemindFlowRecords << remindflowrecords_tmp
1049
+ end
1050
+ end
1051
+ @RequestId = params['RequestId']
1052
+ end
1053
+ end
1054
+
1005
1055
  # CreateFlow请求参数结构体
1006
1056
  class CreateFlowRequest < TencentCloud::Common::AbstractModel
1007
1057
  # @param Operator: 调用方用户信息,userId 必填
@@ -3169,6 +3219,30 @@ module TencentCloud
3169
3219
  end
3170
3220
  end
3171
3221
 
3222
+ # 催办接口返回详细信息
3223
+ class RemindFlowRecords < TencentCloud::Common::AbstractModel
3224
+ # @param CanRemind: 是否能够催办
3225
+ # @type CanRemind: Boolean
3226
+ # @param FlowId: 合同id
3227
+ # @type FlowId: String
3228
+ # @param RemindMessage: 催办详情
3229
+ # @type RemindMessage: String
3230
+
3231
+ attr_accessor :CanRemind, :FlowId, :RemindMessage
3232
+
3233
+ def initialize(canremind=nil, flowid=nil, remindmessage=nil)
3234
+ @CanRemind = canremind
3235
+ @FlowId = flowid
3236
+ @RemindMessage = remindmessage
3237
+ end
3238
+
3239
+ def deserialize(params)
3240
+ @CanRemind = params['CanRemind']
3241
+ @FlowId = params['FlowId']
3242
+ @RemindMessage = params['RemindMessage']
3243
+ end
3244
+ end
3245
+
3172
3246
  # 一码多扫签署二维码对象
3173
3247
  class SignQrCode < TencentCloud::Common::AbstractModel
3174
3248
  # @param QrCodeId: 二维码id
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-ess
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.498
4
+ version: 3.0.500
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-31 00:00:00.000000000 Z
11
+ date: 2023-02-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common