tencentcloud-sdk-essbasic 3.0.498 → 3.0.499
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/v20210526/client.rb +30 -2
- data/lib/v20210526/models.rb +82 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 407b1333b1e4f32e905ee0707c1e4abc72fffb55
|
4
|
+
data.tar.gz: 44085387e7a89b99b5d1fd424889a7945a491a4c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dd26124a648664cdc24af919d4fb3cbeeddd3f53c6951d7d874524a99a605e6b91698bfbf8fa06b374500c81f1c60a3235e8c34f2ad573e2a1178f0b496dd6b5
|
7
|
+
data.tar.gz: 09548aa1decf07cdab3216c5b9e97728887fbfc3bd854d17e9836d97d271f214229f2c61222f71cdaeaf2ecb7974faf52a39641beadecf5e9df390cb5d102713
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.499
|
data/lib/v20210526/client.rb
CHANGED
@@ -231,6 +231,34 @@ module TencentCloud
|
|
231
231
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
232
232
|
end
|
233
233
|
|
234
|
+
# 指定需要批量撤销的签署流程Id,批量催办合同
|
235
|
+
# 客户指定需要撤销的签署流程Id,最多100个,超过100不处理;接口失败后返回错误信息
|
236
|
+
# 注意:
|
237
|
+
# 能撤回合同的只能是合同的发起人或者签署人
|
238
|
+
# 该接口需要开白后使用
|
239
|
+
|
240
|
+
# @param request: Request instance for ChannelCreateFlowReminds.
|
241
|
+
# @type request: :class:`Tencentcloud::essbasic::V20210526::ChannelCreateFlowRemindsRequest`
|
242
|
+
# @rtype: :class:`Tencentcloud::essbasic::V20210526::ChannelCreateFlowRemindsResponse`
|
243
|
+
def ChannelCreateFlowReminds(request)
|
244
|
+
body = send_request('ChannelCreateFlowReminds', request.serialize)
|
245
|
+
response = JSON.parse(body)
|
246
|
+
if response['Response'].key?('Error') == false
|
247
|
+
model = ChannelCreateFlowRemindsResponse.new
|
248
|
+
model.deserialize(response['Response'])
|
249
|
+
model
|
250
|
+
else
|
251
|
+
code = response['Response']['Error']['Code']
|
252
|
+
message = response['Response']['Error']['Message']
|
253
|
+
reqid = response['Response']['RequestId']
|
254
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
255
|
+
end
|
256
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
257
|
+
raise e
|
258
|
+
rescue StandardError => e
|
259
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
260
|
+
end
|
261
|
+
|
234
262
|
# 提交企业签署流程审批结果
|
235
263
|
|
236
264
|
# 在通过接口(CreateFlowsByTemplates 或者ChannelCreateFlowByFiles)创建签署流程时,若指定了参数 NeedSignReview 为true,则可以调用此接口提交企业内部签署审批结果。
|
@@ -595,7 +623,7 @@ module TencentCloud
|
|
595
623
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
596
624
|
end
|
597
625
|
|
598
|
-
#
|
626
|
+
# 查询企业扩展服务授权信息,企业经办人需要是企业超管或者法人
|
599
627
|
|
600
628
|
# @param request: Request instance for DescribeExtendedServiceAuthInfo.
|
601
629
|
# @type request: :class:`Tencentcloud::essbasic::V20210526::DescribeExtendedServiceAuthInfoRequest`
|
@@ -742,7 +770,7 @@ module TencentCloud
|
|
742
770
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
743
771
|
end
|
744
772
|
|
745
|
-
# 修改(操作)企业扩展服务
|
773
|
+
# 修改(操作)企业扩展服务 ,企业经办人需要是企业超管或者法人
|
746
774
|
|
747
775
|
# @param request: Request instance for ModifyExtendedService.
|
748
776
|
# @type request: :class:`Tencentcloud::essbasic::V20210526::ModifyExtendedServiceRequest`
|
data/lib/v20210526/models.rb
CHANGED
@@ -678,6 +678,56 @@ module TencentCloud
|
|
678
678
|
end
|
679
679
|
end
|
680
680
|
|
681
|
+
# ChannelCreateFlowReminds请求参数结构体
|
682
|
+
class ChannelCreateFlowRemindsRequest < TencentCloud::Common::AbstractModel
|
683
|
+
# @param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
|
684
|
+
# @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
|
685
|
+
# @param FlowIds: 签署流程Id数组,最多100个,超过100不处理
|
686
|
+
# @type FlowIds: Array
|
687
|
+
|
688
|
+
attr_accessor :Agent, :FlowIds
|
689
|
+
|
690
|
+
def initialize(agent=nil, flowids=nil)
|
691
|
+
@Agent = agent
|
692
|
+
@FlowIds = flowids
|
693
|
+
end
|
694
|
+
|
695
|
+
def deserialize(params)
|
696
|
+
unless params['Agent'].nil?
|
697
|
+
@Agent = Agent.new
|
698
|
+
@Agent.deserialize(params['Agent'])
|
699
|
+
end
|
700
|
+
@FlowIds = params['FlowIds']
|
701
|
+
end
|
702
|
+
end
|
703
|
+
|
704
|
+
# ChannelCreateFlowReminds返回参数结构体
|
705
|
+
class ChannelCreateFlowRemindsResponse < TencentCloud::Common::AbstractModel
|
706
|
+
# @param RemindFlowRecords: 合同催办详情信息
|
707
|
+
# @type RemindFlowRecords: Array
|
708
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
709
|
+
# @type RequestId: String
|
710
|
+
|
711
|
+
attr_accessor :RemindFlowRecords, :RequestId
|
712
|
+
|
713
|
+
def initialize(remindflowrecords=nil, requestid=nil)
|
714
|
+
@RemindFlowRecords = remindflowrecords
|
715
|
+
@RequestId = requestid
|
716
|
+
end
|
717
|
+
|
718
|
+
def deserialize(params)
|
719
|
+
unless params['RemindFlowRecords'].nil?
|
720
|
+
@RemindFlowRecords = []
|
721
|
+
params['RemindFlowRecords'].each do |i|
|
722
|
+
remindflowrecords_tmp = RemindFlowRecords.new
|
723
|
+
remindflowrecords_tmp.deserialize(i)
|
724
|
+
@RemindFlowRecords << remindflowrecords_tmp
|
725
|
+
end
|
726
|
+
end
|
727
|
+
@RequestId = params['RequestId']
|
728
|
+
end
|
729
|
+
end
|
730
|
+
|
681
731
|
# ChannelCreateFlowSignReview请求参数结构体
|
682
732
|
class ChannelCreateFlowSignReviewRequest < TencentCloud::Common::AbstractModel
|
683
733
|
# @param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
|
@@ -2033,6 +2083,8 @@ module TencentCloud
|
|
2033
2083
|
# DescribeExtendedServiceAuthInfo请求参数结构体
|
2034
2084
|
class DescribeExtendedServiceAuthInfoRequest < TencentCloud::Common::AbstractModel
|
2035
2085
|
# @param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填
|
2086
|
+
|
2087
|
+
# 注: 此接口 参数Agent. ProxyOperator.OpenId 需要传递超管或者法人的OpenId
|
2036
2088
|
# @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
|
2037
2089
|
|
2038
2090
|
attr_accessor :Agent
|
@@ -3122,7 +3174,9 @@ module TencentCloud
|
|
3122
3174
|
|
3123
3175
|
# ModifyExtendedService请求参数结构体
|
3124
3176
|
class ModifyExtendedServiceRequest < TencentCloud::Common::AbstractModel
|
3125
|
-
# @param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId
|
3177
|
+
# @param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
|
3178
|
+
|
3179
|
+
# 注: 此接口 参数Agent. ProxyOperator.OpenId 需要传递超管或者法人的OpenId
|
3126
3180
|
# @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
|
3127
3181
|
# @param ServiceType: 扩展服务类型
|
3128
3182
|
# AUTO_SIGN 企业静默签(自动签署)
|
@@ -3157,9 +3211,10 @@ module TencentCloud
|
|
3157
3211
|
# ModifyExtendedService返回参数结构体
|
3158
3212
|
class ModifyExtendedServiceResponse < TencentCloud::Common::AbstractModel
|
3159
3213
|
# @param OperateUrl: 操作跳转链接,有效期24小时
|
3160
|
-
#
|
3214
|
+
# 若操作时没有返回跳转链接,表示无需跳转操作,此时会直接开通/关闭服务。
|
3161
3215
|
|
3162
|
-
#
|
3216
|
+
# 当操作类型是 OPEN 且 扩展服务类型是 AUTO_SIGN 或 DOWNLOAD_FLOW 或者 OVERSEA_SIGN 时返回操作链接,
|
3217
|
+
# 返回的链接需要平台方自行触达超管或法人,超管或法人点击链接完成服务开通操作。
|
3163
3218
|
# @type OperateUrl: String
|
3164
3219
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3165
3220
|
# @type RequestId: String
|
@@ -3672,6 +3727,30 @@ module TencentCloud
|
|
3672
3727
|
end
|
3673
3728
|
end
|
3674
3729
|
|
3730
|
+
# 催办接口返回详细信息
|
3731
|
+
class RemindFlowRecords < TencentCloud::Common::AbstractModel
|
3732
|
+
# @param CanRemind: 是否能够催办
|
3733
|
+
# @type CanRemind: Boolean
|
3734
|
+
# @param FlowId: 合同id
|
3735
|
+
# @type FlowId: String
|
3736
|
+
# @param RemindMessage: 催办详情
|
3737
|
+
# @type RemindMessage: String
|
3738
|
+
|
3739
|
+
attr_accessor :CanRemind, :FlowId, :RemindMessage
|
3740
|
+
|
3741
|
+
def initialize(canremind=nil, flowid=nil, remindmessage=nil)
|
3742
|
+
@CanRemind = canremind
|
3743
|
+
@FlowId = flowid
|
3744
|
+
@RemindMessage = remindmessage
|
3745
|
+
end
|
3746
|
+
|
3747
|
+
def deserialize(params)
|
3748
|
+
@CanRemind = params['CanRemind']
|
3749
|
+
@FlowId = params['FlowId']
|
3750
|
+
@RemindMessage = params['RemindMessage']
|
3751
|
+
end
|
3752
|
+
end
|
3753
|
+
|
3675
3754
|
# 资源链接信息
|
3676
3755
|
class ResourceUrlInfo < TencentCloud::Common::AbstractModel
|
3677
3756
|
# @param Url: 资源链接地址,过期时间5分钟
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-essbasic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.499
|
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
|
11
|
+
date: 2023-02-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|