tencentcloud-sdk-essbasic 3.0.1192 → 3.0.1193

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20210526/models.rb +33 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cdcc877e1cef86c1c04f9db8cbe205e6687da34e
4
- data.tar.gz: 2371caf670cbcbdbbe05359f3989a34ee9ba4271
3
+ metadata.gz: 906b92d097634840ef8b3df303b23e4f6c25c7ad
4
+ data.tar.gz: 6abcef082ac16e2672e100a3ff34e855fa20a5e0
5
5
  SHA512:
6
- metadata.gz: e86c7839fa32f4dfc4884696b9476f75ba5bc5454dfaca7e9ecf57b5b8b7a6dafa4a2d490b16f668a98b4b7344c3ea0f32f46fb8668a6ffa70434706177eb2bb
7
- data.tar.gz: 2dd4e72e9db6bb077f2c8e4aa678342dbbf868295816c2c859993f73b6e9980efdd98f6a7aa10e2b6245de76528527ec259b8fa0576419974e4dcf8e33de7746
6
+ metadata.gz: e58845b1a2b32d4519cfd3cdfd5b725d234f4de347e4dd649dcebe383c46b23e1e3707700cef8e3cd14619ec1a93ff20e9722108184365414d708f7cc41bbe89
7
+ data.tar.gz: a7a3abc88c595ee927bed4de76168a08a52b4aef983b56ecd5a6230ae78f1582f74b050b8e849ebffd981e0be3c871cac366276d02a0212e633fd7409e14ac4c
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1192
1
+ 3.0.1193
@@ -2729,10 +2729,14 @@ module TencentCloud
2729
2729
  # @type FlowGroupId: String
2730
2730
  # @param CanBatchReject: 是否允许此链接中签署方批量拒签。 <ul><li>false (默认): 不允许批量拒签</li> <li>true : 允许批量拒签。</li></ul>注:`当前合同组不支持批量拒签功能。请对合同组中的每个子合同逐一执行拒签操作,以达到拒签整个合同组的效果。`
2731
2731
  # @type CanBatchReject: Boolean
2732
+ # @param DynamicSignOption: 动态签署方领取链接配置。
2733
+ # @type DynamicSignOption: :class:`Tencentcloud::Essbasic.v20210526.models.DynamicSignOption`
2734
+ # @param RecipientIds: 为签署方经办人在签署合同中的参与方ID,必须与参数FlowIds数组一一对应。 注:生成动态签署方领取时此参数必传。
2735
+ # @type RecipientIds: Array
2732
2736
 
2733
- attr_accessor :Agent, :FlowIds, :OpenId, :Name, :Mobile, :FlowGroupId, :CanBatchReject
2737
+ attr_accessor :Agent, :FlowIds, :OpenId, :Name, :Mobile, :FlowGroupId, :CanBatchReject, :DynamicSignOption, :RecipientIds
2734
2738
 
2735
- def initialize(agent=nil, flowids=nil, openid=nil, name=nil, mobile=nil, flowgroupid=nil, canbatchreject=nil)
2739
+ def initialize(agent=nil, flowids=nil, openid=nil, name=nil, mobile=nil, flowgroupid=nil, canbatchreject=nil, dynamicsignoption=nil, recipientids=nil)
2736
2740
  @Agent = agent
2737
2741
  @FlowIds = flowids
2738
2742
  @OpenId = openid
@@ -2740,6 +2744,8 @@ module TencentCloud
2740
2744
  @Mobile = mobile
2741
2745
  @FlowGroupId = flowgroupid
2742
2746
  @CanBatchReject = canbatchreject
2747
+ @DynamicSignOption = dynamicsignoption
2748
+ @RecipientIds = recipientids
2743
2749
  end
2744
2750
 
2745
2751
  def deserialize(params)
@@ -2753,6 +2759,11 @@ module TencentCloud
2753
2759
  @Mobile = params['Mobile']
2754
2760
  @FlowGroupId = params['FlowGroupId']
2755
2761
  @CanBatchReject = params['CanBatchReject']
2762
+ unless params['DynamicSignOption'].nil?
2763
+ @DynamicSignOption = DynamicSignOption.new
2764
+ @DynamicSignOption.deserialize(params['DynamicSignOption'])
2765
+ end
2766
+ @RecipientIds = params['RecipientIds']
2756
2767
  end
2757
2768
  end
2758
2769
 
@@ -9081,6 +9092,26 @@ module TencentCloud
9081
9092
  end
9082
9093
  end
9083
9094
 
9095
+ # 动态签署领取链接配置,当全部签署方均为动态签署方时生效。
9096
+ class DynamicSignOption < TencentCloud::Common::AbstractModel
9097
+ # @param DynamicReceiveType: 多份合同批量签署时,动态签署领取要求:<ul><li><b>0(默认值)</b>: 可以领取部分合同进入签署。</li><li><b>1 </b>: 必须全部领取进入签署,生成链接的所有合同必须相同经办人完成合同的领取签署。</li></ul>
9098
+ # @type DynamicReceiveType: Integer
9099
+ # @param OrganizationOpenId: 动态签署方时,预设的企业OpenId,预设企业OpenId后,只允许对应的企业员工进行领取签署。
9100
+ # @type OrganizationOpenId: String
9101
+
9102
+ attr_accessor :DynamicReceiveType, :OrganizationOpenId
9103
+
9104
+ def initialize(dynamicreceivetype=nil, organizationopenid=nil)
9105
+ @DynamicReceiveType = dynamicreceivetype
9106
+ @OrganizationOpenId = organizationopenid
9107
+ end
9108
+
9109
+ def deserialize(params)
9110
+ @DynamicReceiveType = params['DynamicReceiveType']
9111
+ @OrganizationOpenId = params['OrganizationOpenId']
9112
+ end
9113
+ end
9114
+
9084
9115
  # 创建嵌入式页面url个性化参数
9085
9116
  class EmbedUrlOption < TencentCloud::Common::AbstractModel
9086
9117
  # @param ShowFlowDetailComponent: 合同详情预览,允许展示控件信息
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.1192
4
+ version: 3.0.1193
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-12-29 00:00:00.000000000 Z
11
+ date: 2025-12-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common