tencentcloud-sdk-essbasic 1.0.285 → 1.0.288

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 +23 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b9b8f258b05701646a8b0629e86988aa6cbf75ad
4
- data.tar.gz: a3e153f1003a32acba6aba83a397755028dc4f07
3
+ metadata.gz: 7d5bd807ce760384702c568a404e1ae9ee2dc634
4
+ data.tar.gz: 11178f089f33fde6d90cb3b70e5aee571e7cd792
5
5
  SHA512:
6
- metadata.gz: 686b58511283dfadef632d1c716c2ced7f24a8deef510e82b2cafaed1695b97fc7a979eb7342a9282f7f9154a7c880e56f09ee38f4a8d54038e6e167aac412d0
7
- data.tar.gz: bd5d3ddf70dde779fb474edae87869760769800a2025de3143059f6a742afb51abeffd62741a630963704013994709b9b9faf939b8542a04f045e4f71300619a
6
+ metadata.gz: cf5369da828d1ca11ec9ab176c8dcb51c6310c961624ea41d4550048cee0431e71b1ec3cbb660303fe915773f59d5d6702cba8025d753f922a21e68902ef79d5
7
+ data.tar.gz: ee90cdbe530eb9fb085ca980c914ed260ffe159c7131a52e823721b52ff00602abc4ebc1b0e3ed12647061889d4a0f447e74ece780479da115bd1af58f7f3007
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.285
1
+ 1.0.288
@@ -351,15 +351,18 @@ module TencentCloud
351
351
  # @type Endpoint: String
352
352
  # @param JumpUrl: 签署完之后的H5页面的跳转链接,针对Endpoint为CHANNEL时有效
353
353
  # @type JumpUrl: String
354
+ # @param AutoJumpBack: "APP" 类型的签署链接,可以设置此值;表示签署完成后自动回跳至源APP;
355
+ # @type AutoJumpBack: Boolean
354
356
 
355
- attr_accessor :Agent, :FlowIds, :Operator, :Endpoint, :JumpUrl
357
+ attr_accessor :Agent, :FlowIds, :Operator, :Endpoint, :JumpUrl, :AutoJumpBack
356
358
 
357
- def initialize(agent=nil, flowids=nil, operator=nil, endpoint=nil, jumpurl=nil)
359
+ def initialize(agent=nil, flowids=nil, operator=nil, endpoint=nil, jumpurl=nil, autojumpback=nil)
358
360
  @Agent = agent
359
361
  @FlowIds = flowids
360
362
  @Operator = operator
361
363
  @Endpoint = endpoint
362
364
  @JumpUrl = jumpurl
365
+ @AutoJumpBack = autojumpback
363
366
  end
364
367
 
365
368
  def deserialize(params)
@@ -374,6 +377,7 @@ module TencentCloud
374
377
  end
375
378
  @Endpoint = params['Endpoint']
376
379
  @JumpUrl = params['JumpUrl']
380
+ @AutoJumpBack = params['AutoJumpBack']
377
381
  end
378
382
  end
379
383
 
@@ -769,7 +773,9 @@ module TencentCloud
769
773
  # @type Deadline: Integer
770
774
  # @param CallbackUrl: 签署完回调url
771
775
  # @type CallbackUrl: String
772
- # @param ApproverType: 签署人类型,PERSONORGANIZATION
776
+ # @param ApproverType: 签署人类型,PERSON-个人;ORGANIZATION-企业;
777
+ # ENTERPRISESERVER-企业静默签;
778
+ # 注:ENTERPRISESERVER 类型仅用于使用文件创建流程(ChannelCreateFlowByFiles)接口;并且仅能指定发起方企业签署方为静默签署;
773
779
  # @type ApproverType: String
774
780
  # @param OpenId: 用户侧第三方id
775
781
  # @type OpenId: String
@@ -786,10 +792,12 @@ module TencentCloud
786
792
  # @param NotChannelOrganization: 指定签署人非渠道企业下员工,在ApproverType为ORGANIZATION时指定。
787
793
  # 默认为false,即签署人位于同一个渠道应用号下;
788
794
  # @type NotChannelOrganization: Boolean
795
+ # @param SignComponents: 使用PDF文件直接发起合同时,签署人指定的签署控件
796
+ # @type SignComponents: Array
789
797
 
790
- attr_accessor :Name, :IdCardNumber, :Mobile, :JumpUrl, :Deadline, :CallbackUrl, :ApproverType, :OpenId, :PreReadTime, :ComponentLimitType, :RecipientId, :OrganizationName, :OrganizationOpenId, :NotChannelOrganization
798
+ attr_accessor :Name, :IdCardNumber, :Mobile, :JumpUrl, :Deadline, :CallbackUrl, :ApproverType, :OpenId, :PreReadTime, :ComponentLimitType, :RecipientId, :OrganizationName, :OrganizationOpenId, :NotChannelOrganization, :SignComponents
791
799
 
792
- def initialize(name=nil, idcardnumber=nil, mobile=nil, jumpurl=nil, deadline=nil, callbackurl=nil, approvertype=nil, openid=nil, prereadtime=nil, componentlimittype=nil, recipientid=nil, organizationname=nil, organizationopenid=nil, notchannelorganization=nil)
800
+ def initialize(name=nil, idcardnumber=nil, mobile=nil, jumpurl=nil, deadline=nil, callbackurl=nil, approvertype=nil, openid=nil, prereadtime=nil, componentlimittype=nil, recipientid=nil, organizationname=nil, organizationopenid=nil, notchannelorganization=nil, signcomponents=nil)
793
801
  @Name = name
794
802
  @IdCardNumber = idcardnumber
795
803
  @Mobile = mobile
@@ -804,6 +812,7 @@ module TencentCloud
804
812
  @OrganizationName = organizationname
805
813
  @OrganizationOpenId = organizationopenid
806
814
  @NotChannelOrganization = notchannelorganization
815
+ @SignComponents = signcomponents
807
816
  end
808
817
 
809
818
  def deserialize(params)
@@ -821,6 +830,14 @@ module TencentCloud
821
830
  @OrganizationName = params['OrganizationName']
822
831
  @OrganizationOpenId = params['OrganizationOpenId']
823
832
  @NotChannelOrganization = params['NotChannelOrganization']
833
+ unless params['SignComponents'].nil?
834
+ @SignComponents = []
835
+ params['SignComponents'].each do |i|
836
+ component_tmp = Component.new
837
+ component_tmp.deserialize(i)
838
+ @SignComponents << component_tmp
839
+ end
840
+ end
824
841
  end
825
842
  end
826
843
 
@@ -1659,7 +1676,7 @@ module TencentCloud
1659
1676
  # UploadFiles请求参数结构体
1660
1677
  class UploadFilesRequest < TencentCloud::Common::AbstractModel
1661
1678
  # @param BusinessType: 文件对应业务类型,用于区分文件存储路径:
1662
- # 1. TEMPLATE - 模版; 文件类型:.pdf
1679
+ # 1. TEMPLATE - 模板; 文件类型:.pdf
1663
1680
  # 2. DOCUMENT - 签署过程及签署后的合同文档/图片控件 文件类型:.pdf/.jpg/.png
1664
1681
  # @type BusinessType: String
1665
1682
  # @param Agent: 应用相关信息,若是渠道版调用 appid 和proxyappid 必填
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: 1.0.285
4
+ version: 1.0.288
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-03-24 00:00:00.000000000 Z
11
+ date: 2022-03-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common