tencentcloud-sdk-ess 1.0.304 → 1.0.305
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/v20201111/models.rb +14 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b2c4795b2569e282bcf9a16e1ba164fb95c02e38
|
|
4
|
+
data.tar.gz: 39d77cd9e7ed799b1622610bf1f9987facd9d991
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eda0096b54258f58ca949c2ec61dc555853b96ddec77e084b827c7267c474dcd6b39fb4f0aae93325af4691b48e86a33398846a1a02376fd7d1f02237506fdc9
|
|
7
|
+
data.tar.gz: 71265e196b8708a88ca0e8b34dc59777b05ca9b86a2427724db40c580908f633f120f3049b88344c1506d20f9f2e080107850393f19e2c4bc141dc1792347146
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.305
|
data/lib/v20201111/models.rb
CHANGED
|
@@ -581,16 +581,25 @@ module TencentCloud
|
|
|
581
581
|
# @type PathType: Integer
|
|
582
582
|
# @param FlowId: 合同详情 id (PathType=1时必传)
|
|
583
583
|
# @type FlowId: String
|
|
584
|
+
# @param OrganizationName: 企业名称
|
|
585
|
+
# @type OrganizationName: String
|
|
586
|
+
# @param EndPoint: 链接类型 HTTP:跳转电子签小程序的http_url,APP:第三方APP或小程序跳转电子签小程序,默认为HTTP类型
|
|
587
|
+
# @type EndPoint: String
|
|
588
|
+
# @param AutoJumpBack: 是否自动回跳 true:是, false:否。该参数只针对"APP" 类型的签署链接有效
|
|
589
|
+
# @type AutoJumpBack: Boolean
|
|
584
590
|
|
|
585
|
-
attr_accessor :Operator, :Agent, :Name, :Mobile, :PathType, :FlowId
|
|
591
|
+
attr_accessor :Operator, :Agent, :Name, :Mobile, :PathType, :FlowId, :OrganizationName, :EndPoint, :AutoJumpBack
|
|
586
592
|
|
|
587
|
-
def initialize(operator=nil, agent=nil, name=nil, mobile=nil, pathtype=nil, flowid=nil)
|
|
593
|
+
def initialize(operator=nil, agent=nil, name=nil, mobile=nil, pathtype=nil, flowid=nil, organizationname=nil, endpoint=nil, autojumpback=nil)
|
|
588
594
|
@Operator = operator
|
|
589
595
|
@Agent = agent
|
|
590
596
|
@Name = name
|
|
591
597
|
@Mobile = mobile
|
|
592
598
|
@PathType = pathtype
|
|
593
599
|
@FlowId = flowid
|
|
600
|
+
@OrganizationName = organizationname
|
|
601
|
+
@EndPoint = endpoint
|
|
602
|
+
@AutoJumpBack = autojumpback
|
|
594
603
|
end
|
|
595
604
|
|
|
596
605
|
def deserialize(params)
|
|
@@ -606,6 +615,9 @@ module TencentCloud
|
|
|
606
615
|
@Mobile = params['Mobile']
|
|
607
616
|
@PathType = params['PathType']
|
|
608
617
|
@FlowId = params['FlowId']
|
|
618
|
+
@OrganizationName = params['OrganizationName']
|
|
619
|
+
@EndPoint = params['EndPoint']
|
|
620
|
+
@AutoJumpBack = params['AutoJumpBack']
|
|
609
621
|
end
|
|
610
622
|
end
|
|
611
623
|
|