tencentcloud-sdk-ess 3.0.557 → 3.0.559
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 +23 -13
- 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: 57e0a53c691c31dd6642b18ed6c3032f5c017ca8
|
4
|
+
data.tar.gz: 0588ae1a1f035b204cc723763bacc02898071721
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4dc7bdcee0d1421385ad947829e180024e3a47e4517618ba00f1161fdc169392294fab04cd8362f23d0420f5b97cb0c05f7d38b589c7d4731e158977abd0e3c3
|
7
|
+
data.tar.gz: 4656bb7ffc7bcd9e6dc5cf02cafb26d4bd94a715af051ee380be79054e4045ead018bf4254428b3c70c9f056bd9b6e2fd76cdd073b415db13c6d6bfe001f92d0
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.559
|
data/lib/v20201111/models.rb
CHANGED
@@ -1427,18 +1427,18 @@ module TencentCloud
|
|
1427
1427
|
# @type FlowId: String
|
1428
1428
|
# @param FlowApproverInfos: 流程签署人,其中ApproverName,ApproverMobile和ApproverType必传,其他可不传,ApproverType目前只支持个人类型的签署人。还需注意签署人只能有手写签名和时间类型的签署控件,其他类型的填写控件和签署控件暂时都未支持。
|
1429
1429
|
# @type FlowApproverInfos: Array
|
1430
|
-
# @param Organization: 机构信息,暂未开放
|
1431
|
-
# @type Organization: :class:`Tencentcloud::Ess.v20201111.models.OrganizationInfo`
|
1432
1430
|
# @param Operator: 用户信息,此结构体UserId必填
|
1433
1431
|
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
1432
|
+
# @param Organization: 机构信息,暂未开放
|
1433
|
+
# @type Organization: :class:`Tencentcloud::Ess.v20201111.models.OrganizationInfo`
|
1434
1434
|
|
1435
|
-
attr_accessor :FlowId, :FlowApproverInfos, :
|
1435
|
+
attr_accessor :FlowId, :FlowApproverInfos, :Operator, :Organization
|
1436
1436
|
|
1437
|
-
def initialize(flowid=nil, flowapproverinfos=nil,
|
1437
|
+
def initialize(flowid=nil, flowapproverinfos=nil, operator=nil, organization=nil)
|
1438
1438
|
@FlowId = flowid
|
1439
1439
|
@FlowApproverInfos = flowapproverinfos
|
1440
|
-
@Organization = organization
|
1441
1440
|
@Operator = operator
|
1441
|
+
@Organization = organization
|
1442
1442
|
end
|
1443
1443
|
|
1444
1444
|
def deserialize(params)
|
@@ -1451,14 +1451,14 @@ module TencentCloud
|
|
1451
1451
|
@FlowApproverInfos << flowcreateapprover_tmp
|
1452
1452
|
end
|
1453
1453
|
end
|
1454
|
-
unless params['Organization'].nil?
|
1455
|
-
@Organization = OrganizationInfo.new
|
1456
|
-
@Organization.deserialize(params['Organization'])
|
1457
|
-
end
|
1458
1454
|
unless params['Operator'].nil?
|
1459
1455
|
@Operator = UserInfo.new
|
1460
1456
|
@Operator.deserialize(params['Operator'])
|
1461
1457
|
end
|
1458
|
+
unless params['Organization'].nil?
|
1459
|
+
@Organization = OrganizationInfo.new
|
1460
|
+
@Organization.deserialize(params['Organization'])
|
1461
|
+
end
|
1462
1462
|
end
|
1463
1463
|
end
|
1464
1464
|
|
@@ -3651,10 +3651,13 @@ module TencentCloud
|
|
3651
3651
|
# @param FlowMessage: 拒签或者取消的原因描述
|
3652
3652
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3653
3653
|
# @type FlowMessage: String
|
3654
|
+
# @param Creator: 合同发起人userId
|
3655
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3656
|
+
# @type Creator: String
|
3654
3657
|
|
3655
|
-
attr_accessor :FlowId, :FlowName, :FlowDescription, :FlowType, :FlowStatus, :CreatedOn, :FlowMessage
|
3658
|
+
attr_accessor :FlowId, :FlowName, :FlowDescription, :FlowType, :FlowStatus, :CreatedOn, :FlowMessage, :Creator
|
3656
3659
|
|
3657
|
-
def initialize(flowid=nil, flowname=nil, flowdescription=nil, flowtype=nil, flowstatus=nil, createdon=nil, flowmessage=nil)
|
3660
|
+
def initialize(flowid=nil, flowname=nil, flowdescription=nil, flowtype=nil, flowstatus=nil, createdon=nil, flowmessage=nil, creator=nil)
|
3658
3661
|
@FlowId = flowid
|
3659
3662
|
@FlowName = flowname
|
3660
3663
|
@FlowDescription = flowdescription
|
@@ -3662,6 +3665,7 @@ module TencentCloud
|
|
3662
3665
|
@FlowStatus = flowstatus
|
3663
3666
|
@CreatedOn = createdon
|
3664
3667
|
@FlowMessage = flowmessage
|
3668
|
+
@Creator = creator
|
3665
3669
|
end
|
3666
3670
|
|
3667
3671
|
def deserialize(params)
|
@@ -3672,6 +3676,7 @@ module TencentCloud
|
|
3672
3676
|
@FlowStatus = params['FlowStatus']
|
3673
3677
|
@CreatedOn = params['CreatedOn']
|
3674
3678
|
@FlowMessage = params['FlowMessage']
|
3679
|
+
@Creator = params['Creator']
|
3675
3680
|
end
|
3676
3681
|
end
|
3677
3682
|
|
@@ -3801,10 +3806,13 @@ module TencentCloud
|
|
3801
3806
|
# @type FlowApproverInfos: Array
|
3802
3807
|
# @param CcInfos: 合同(流程)的关注方信息列表
|
3803
3808
|
# @type CcInfos: Array
|
3809
|
+
# @param Creator: 合同发起人UserId
|
3810
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3811
|
+
# @type Creator: String
|
3804
3812
|
|
3805
|
-
attr_accessor :FlowId, :FlowName, :FlowType, :FlowStatus, :FlowMessage, :FlowDescription, :CreatedOn, :FlowApproverInfos, :CcInfos
|
3813
|
+
attr_accessor :FlowId, :FlowName, :FlowType, :FlowStatus, :FlowMessage, :FlowDescription, :CreatedOn, :FlowApproverInfos, :CcInfos, :Creator
|
3806
3814
|
|
3807
|
-
def initialize(flowid=nil, flowname=nil, flowtype=nil, flowstatus=nil, flowmessage=nil, flowdescription=nil, createdon=nil, flowapproverinfos=nil, ccinfos=nil)
|
3815
|
+
def initialize(flowid=nil, flowname=nil, flowtype=nil, flowstatus=nil, flowmessage=nil, flowdescription=nil, createdon=nil, flowapproverinfos=nil, ccinfos=nil, creator=nil)
|
3808
3816
|
@FlowId = flowid
|
3809
3817
|
@FlowName = flowname
|
3810
3818
|
@FlowType = flowtype
|
@@ -3814,6 +3822,7 @@ module TencentCloud
|
|
3814
3822
|
@CreatedOn = createdon
|
3815
3823
|
@FlowApproverInfos = flowapproverinfos
|
3816
3824
|
@CcInfos = ccinfos
|
3825
|
+
@Creator = creator
|
3817
3826
|
end
|
3818
3827
|
|
3819
3828
|
def deserialize(params)
|
@@ -3840,6 +3849,7 @@ module TencentCloud
|
|
3840
3849
|
@CcInfos << flowapproverdetail_tmp
|
3841
3850
|
end
|
3842
3851
|
end
|
3852
|
+
@Creator = params['Creator']
|
3843
3853
|
end
|
3844
3854
|
end
|
3845
3855
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-ess
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.559
|
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-04-
|
11
|
+
date: 2023-04-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|