tencentcloud-sdk-essbasic 3.0.1168 → 3.0.1169
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/models.rb +30 -8
- 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: 9cfa683e86be4cdae113f17175e3e90cedf7cd04
|
|
4
|
+
data.tar.gz: 221add2aea6a2b09ec9a9873185b6df1c4bb46c4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a7ae749c90beaf08bd5c7965d0d1f3fd840c59bbca78f90c3591757cc9f59074e55055cef35e2b9ecbda6f42d559eb11c4e0da7bf5453e7da8b9f4479b6aa082
|
|
7
|
+
data.tar.gz: 107051d1bb48c8f0bcd9ff887088db40ebedecf0e10c77ef6d92e05b06fb98794be3bc48a5fed69969cddca5e8040c863884314b2ec22def285a80ce9c4d7821
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1169
|
data/lib/v20210526/models.rb
CHANGED
|
@@ -2905,7 +2905,9 @@ module TencentCloud
|
|
|
2905
2905
|
class ChannelCreatePrepareFlowRequest < TencentCloud::Common::AbstractModel
|
|
2906
2906
|
# @param ResourceType: 资源类型,取值有:
|
|
2907
2907
|
# <ul><li> **1**:模板</li>
|
|
2908
|
-
# <li> **2**:文件(默认值)</li
|
|
2908
|
+
# <li> **2**:文件(默认值)</li>
|
|
2909
|
+
# <li> **3**:草稿</li>
|
|
2910
|
+
# </ul>
|
|
2909
2911
|
# @type ResourceType: Integer
|
|
2910
2912
|
# @param FlowInfo: 要创建的合同信息
|
|
2911
2913
|
# @type FlowInfo: :class:`Tencentcloud::Essbasic.v20210526.models.BaseFlowInfo`
|
|
@@ -2923,6 +2925,7 @@ module TencentCloud
|
|
|
2923
2925
|
# <ul>
|
|
2924
2926
|
# <li>文件Id(通过UploadFiles获取文件资源Id)</li>
|
|
2925
2927
|
# <li>模板Id(通过控制台创建模板后获取模板Id)</li>
|
|
2928
|
+
# <li>草稿Id(通过嵌入页面保存草稿后获取草稿Id)</li>
|
|
2926
2929
|
# </ul>
|
|
2927
2930
|
# 注意:需要同时设置 ResourceType 参数指定资源类型
|
|
2928
2931
|
# @type ResourceId: String
|
|
@@ -3020,15 +3023,18 @@ module TencentCloud
|
|
|
3020
3023
|
# @type PreviewFlowUrl: String
|
|
3021
3024
|
# @param FlowId: 发起的合同临时Id, 只有当点击进入链接,成功发起合同后, 此Id才有效
|
|
3022
3025
|
# @type FlowId: String
|
|
3026
|
+
# @param DraftId: 临时的草稿id(还未实际保存草稿),用户可以记录此字段对应后续页面保存的草稿,若在页面上未保存草稿,则此字段无效。
|
|
3027
|
+
# @type DraftId: String
|
|
3023
3028
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3024
3029
|
# @type RequestId: String
|
|
3025
3030
|
|
|
3026
|
-
attr_accessor :PrepareFlowUrl, :PreviewFlowUrl, :FlowId, :RequestId
|
|
3031
|
+
attr_accessor :PrepareFlowUrl, :PreviewFlowUrl, :FlowId, :DraftId, :RequestId
|
|
3027
3032
|
|
|
3028
|
-
def initialize(prepareflowurl=nil, previewflowurl=nil, flowid=nil, requestid=nil)
|
|
3033
|
+
def initialize(prepareflowurl=nil, previewflowurl=nil, flowid=nil, draftid=nil, requestid=nil)
|
|
3029
3034
|
@PrepareFlowUrl = prepareflowurl
|
|
3030
3035
|
@PreviewFlowUrl = previewflowurl
|
|
3031
3036
|
@FlowId = flowid
|
|
3037
|
+
@DraftId = draftid
|
|
3032
3038
|
@RequestId = requestid
|
|
3033
3039
|
end
|
|
3034
3040
|
|
|
@@ -3036,6 +3042,7 @@ module TencentCloud
|
|
|
3036
3042
|
@PrepareFlowUrl = params['PrepareFlowUrl']
|
|
3037
3043
|
@PreviewFlowUrl = params['PreviewFlowUrl']
|
|
3038
3044
|
@FlowId = params['FlowId']
|
|
3045
|
+
@DraftId = params['DraftId']
|
|
3039
3046
|
@RequestId = params['RequestId']
|
|
3040
3047
|
end
|
|
3041
3048
|
end
|
|
@@ -6346,13 +6353,19 @@ module TencentCloud
|
|
|
6346
6353
|
# p.s.Endpoint如果是APP 类型,请传递JumpUrl为<font color="red">"true" </font>
|
|
6347
6354
|
# 如果 Endpoint 是 H5 类型,请参考文档跳转电子签H5 p.s. 如果Endpoint是 APP,传递的跳转地址无效,不会进行跳转,仅会进行回跳。
|
|
6348
6355
|
# @type JumpEvents: Array
|
|
6356
|
+
# @param ProxyOrganizationIdCardType: 企业证照类型:
|
|
6357
|
+
# <ul>
|
|
6358
|
+
# <li> **USCC** :(默认)工商组织营业执照</li>
|
|
6359
|
+
# <li> **PRACTICELICENSEOFMEDICALINSTITUTION** :医疗机构执业许可证</li>
|
|
6360
|
+
# </ul>
|
|
6361
|
+
# @type ProxyOrganizationIdCardType: String
|
|
6349
6362
|
|
|
6350
|
-
attr_accessor :Agent, :ProxyOrganizationName, :UniformSocialCreditCode, :ProxyOperatorName, :ProxyOperatorMobile, :Module, :ModuleId, :MenuStatus, :Endpoint, :AutoJumpBackEvent, :AuthorizationTypes, :ProxyOperatorIdCardNumber, :AutoJumpUrl, :TopNavigationStatus, :AutoActive, :BusinessLicense, :ProxyAddress, :ProxyLegalName, :PowerOfAttorneys, :OrganizationAuthorizationOptions, :BankAccountNumber, :Operator, :JumpEvents
|
|
6363
|
+
attr_accessor :Agent, :ProxyOrganizationName, :UniformSocialCreditCode, :ProxyOperatorName, :ProxyOperatorMobile, :Module, :ModuleId, :MenuStatus, :Endpoint, :AutoJumpBackEvent, :AuthorizationTypes, :ProxyOperatorIdCardNumber, :AutoJumpUrl, :TopNavigationStatus, :AutoActive, :BusinessLicense, :ProxyAddress, :ProxyLegalName, :PowerOfAttorneys, :OrganizationAuthorizationOptions, :BankAccountNumber, :Operator, :JumpEvents, :ProxyOrganizationIdCardType
|
|
6351
6364
|
extend Gem::Deprecate
|
|
6352
6365
|
deprecate :Operator, :none, 2025, 11
|
|
6353
6366
|
deprecate :Operator=, :none, 2025, 11
|
|
6354
6367
|
|
|
6355
|
-
def initialize(agent=nil, proxyorganizationname=nil, uniformsocialcreditcode=nil, proxyoperatorname=nil, proxyoperatormobile=nil, _module=nil, moduleid=nil, menustatus=nil, endpoint=nil, autojumpbackevent=nil, authorizationtypes=nil, proxyoperatoridcardnumber=nil, autojumpurl=nil, topnavigationstatus=nil, autoactive=nil, businesslicense=nil, proxyaddress=nil, proxylegalname=nil, powerofattorneys=nil, organizationauthorizationoptions=nil, bankaccountnumber=nil, operator=nil, jumpevents=nil)
|
|
6368
|
+
def initialize(agent=nil, proxyorganizationname=nil, uniformsocialcreditcode=nil, proxyoperatorname=nil, proxyoperatormobile=nil, _module=nil, moduleid=nil, menustatus=nil, endpoint=nil, autojumpbackevent=nil, authorizationtypes=nil, proxyoperatoridcardnumber=nil, autojumpurl=nil, topnavigationstatus=nil, autoactive=nil, businesslicense=nil, proxyaddress=nil, proxylegalname=nil, powerofattorneys=nil, organizationauthorizationoptions=nil, bankaccountnumber=nil, operator=nil, jumpevents=nil, proxyorganizationidcardtype=nil)
|
|
6356
6369
|
@Agent = agent
|
|
6357
6370
|
@ProxyOrganizationName = proxyorganizationname
|
|
6358
6371
|
@UniformSocialCreditCode = uniformsocialcreditcode
|
|
@@ -6376,6 +6389,7 @@ module TencentCloud
|
|
|
6376
6389
|
@BankAccountNumber = bankaccountnumber
|
|
6377
6390
|
@Operator = operator
|
|
6378
6391
|
@JumpEvents = jumpevents
|
|
6392
|
+
@ProxyOrganizationIdCardType = proxyorganizationidcardtype
|
|
6379
6393
|
end
|
|
6380
6394
|
|
|
6381
6395
|
def deserialize(params)
|
|
@@ -6418,6 +6432,7 @@ module TencentCloud
|
|
|
6418
6432
|
@JumpEvents << jumpevent_tmp
|
|
6419
6433
|
end
|
|
6420
6434
|
end
|
|
6435
|
+
@ProxyOrganizationIdCardType = params['ProxyOrganizationIdCardType']
|
|
6421
6436
|
end
|
|
6422
6437
|
end
|
|
6423
6438
|
|
|
@@ -6832,10 +6847,12 @@ module TencentCloud
|
|
|
6832
6847
|
# @type SelfName: String
|
|
6833
6848
|
# @param HideSignCodeAfterStart: 发起后签署码隐藏,默认false,注:仅对新版页面生效
|
|
6834
6849
|
# @type HideSignCodeAfterStart: Boolean
|
|
6850
|
+
# @param NeedFlowDraft: 发起过程中是否保存草稿
|
|
6851
|
+
# @type NeedFlowDraft: Boolean
|
|
6835
6852
|
|
|
6836
|
-
attr_accessor :CanEditFlow, :HideShowFlowName, :HideShowFlowType, :HideShowDeadline, :CanSkipAddApprover, :ForbidEditApprover, :CustomCreateFlowDescription, :ForbidEditFillComponent, :SkipUploadFile, :SignComponentConfig, :ForbidEditWatermark, :PreviewAfterStart, :SignAfterStart, :HideOperationSteps, :SelfName, :HideSignCodeAfterStart
|
|
6853
|
+
attr_accessor :CanEditFlow, :HideShowFlowName, :HideShowFlowType, :HideShowDeadline, :CanSkipAddApprover, :ForbidEditApprover, :CustomCreateFlowDescription, :ForbidEditFillComponent, :SkipUploadFile, :SignComponentConfig, :ForbidEditWatermark, :PreviewAfterStart, :SignAfterStart, :HideOperationSteps, :SelfName, :HideSignCodeAfterStart, :NeedFlowDraft
|
|
6837
6854
|
|
|
6838
|
-
def initialize(caneditflow=nil, hideshowflowname=nil, hideshowflowtype=nil, hideshowdeadline=nil, canskipaddapprover=nil, forbideditapprover=nil, customcreateflowdescription=nil, forbideditfillcomponent=nil, skipuploadfile=nil, signcomponentconfig=nil, forbideditwatermark=nil, previewafterstart=nil, signafterstart=nil, hideoperationsteps=nil, selfname=nil, hidesigncodeafterstart=nil)
|
|
6855
|
+
def initialize(caneditflow=nil, hideshowflowname=nil, hideshowflowtype=nil, hideshowdeadline=nil, canskipaddapprover=nil, forbideditapprover=nil, customcreateflowdescription=nil, forbideditfillcomponent=nil, skipuploadfile=nil, signcomponentconfig=nil, forbideditwatermark=nil, previewafterstart=nil, signafterstart=nil, hideoperationsteps=nil, selfname=nil, hidesigncodeafterstart=nil, needflowdraft=nil)
|
|
6839
6856
|
@CanEditFlow = caneditflow
|
|
6840
6857
|
@HideShowFlowName = hideshowflowname
|
|
6841
6858
|
@HideShowFlowType = hideshowflowtype
|
|
@@ -6852,6 +6869,7 @@ module TencentCloud
|
|
|
6852
6869
|
@HideOperationSteps = hideoperationsteps
|
|
6853
6870
|
@SelfName = selfname
|
|
6854
6871
|
@HideSignCodeAfterStart = hidesigncodeafterstart
|
|
6872
|
+
@NeedFlowDraft = needflowdraft
|
|
6855
6873
|
end
|
|
6856
6874
|
|
|
6857
6875
|
def deserialize(params)
|
|
@@ -6874,6 +6892,7 @@ module TencentCloud
|
|
|
6874
6892
|
@HideOperationSteps = params['HideOperationSteps']
|
|
6875
6893
|
@SelfName = params['SelfName']
|
|
6876
6894
|
@HideSignCodeAfterStart = params['HideSignCodeAfterStart']
|
|
6895
|
+
@NeedFlowDraft = params['NeedFlowDraft']
|
|
6877
6896
|
end
|
|
6878
6897
|
end
|
|
6879
6898
|
|
|
@@ -8882,7 +8901,10 @@ module TencentCloud
|
|
|
8882
8901
|
|
|
8883
8902
|
# 动态合同信息
|
|
8884
8903
|
class DynamicFlowInfo < TencentCloud::Common::AbstractModel
|
|
8885
|
-
# @param FlowId: 合同流程ID,为32位字符串。
|
|
8904
|
+
# @param FlowId: 合同流程ID,为32位字符串。
|
|
8905
|
+
# - FlowId 在通过[ChannelCreateFlowByFiles](https://qian.tencent.com/developers/partnerApis/startFlows/ChannelCreateFlowByFiles) 发起,可以在返回参数FlowId中获取。
|
|
8906
|
+
# - 建议开发者妥善保存此流程ID,以便于顺利进行后续操作。
|
|
8907
|
+
# - 可登录腾讯电子签控制台,在 "合同"->"合同中心" 中查看某个合同的FlowId(在页面中展示为合同ID)。
|
|
8886
8908
|
# @type FlowId: String
|
|
8887
8909
|
# @param FlowApprovers: 合同流程的参与方列表, 最多可支持50个参与方,可在列表中指定企业B端签署方和个人C端签署方的联系和认证方式等信息,不同类型的签署方传参方式可以参考文档 [签署方入参指引](https://qian.tencent.com/developers/partner/flow_approver)。 如果合同流程是有序签署,Approvers列表中参与人的顺序就是默认的签署顺序, 请确保列表中参与人的顺序符合实际签署顺序。
|
|
8888
8910
|
# @type FlowApprovers: Array
|
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.1169
|
|
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-11-
|
|
11
|
+
date: 2025-11-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|