tencentcloud-sdk-ess 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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20201111/models.rb +234 -6
- 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: e09e2291f0529c5369ec4c46f8f3b06e645989b0
|
|
4
|
+
data.tar.gz: 66fd7c433d0fe3d28d2b0ba501269e1839dcd519
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bfd1e21bf4468d5d4f1e7fb58d89dcceff2e96127cafcb295bfcea3b7936c98089dbdfbfe8deff50f0e0d04d80b45d5c66e8cfc5c80e34f5835a428b6d3745da
|
|
7
|
+
data.tar.gz: 58548644d4281be24a82958ddf8be8bcbf34d0405d6ef5d6c0648b5ff247a3f16b5d5fc2a15492d0f580d0b5b6df9474ee8e7f780d17dd69a7ae52313c4c3267
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1193
|
data/lib/v20201111/models.rb
CHANGED
|
@@ -1748,6 +1748,64 @@ module TencentCloud
|
|
|
1748
1748
|
end
|
|
1749
1749
|
end
|
|
1750
1750
|
|
|
1751
|
+
# 合同摘要
|
|
1752
|
+
class ContractSummary < TencentCloud::Common::AbstractModel
|
|
1753
|
+
# @param Name: 提取内容分类:
|
|
1754
|
+
# Base 合同信息
|
|
1755
|
+
# Identity 主体信息
|
|
1756
|
+
# Performance 履约条款
|
|
1757
|
+
# @type Name: String
|
|
1758
|
+
# @param Infos: 详细信息
|
|
1759
|
+
# @type Infos: Array
|
|
1760
|
+
|
|
1761
|
+
attr_accessor :Name, :Infos
|
|
1762
|
+
|
|
1763
|
+
def initialize(name=nil, infos=nil)
|
|
1764
|
+
@Name = name
|
|
1765
|
+
@Infos = infos
|
|
1766
|
+
end
|
|
1767
|
+
|
|
1768
|
+
def deserialize(params)
|
|
1769
|
+
@Name = params['Name']
|
|
1770
|
+
unless params['Infos'].nil?
|
|
1771
|
+
@Infos = []
|
|
1772
|
+
params['Infos'].each do |i|
|
|
1773
|
+
contractsummaryinfo_tmp = ContractSummaryInfo.new
|
|
1774
|
+
contractsummaryinfo_tmp.deserialize(i)
|
|
1775
|
+
@Infos << contractsummaryinfo_tmp
|
|
1776
|
+
end
|
|
1777
|
+
end
|
|
1778
|
+
end
|
|
1779
|
+
end
|
|
1780
|
+
|
|
1781
|
+
# 合同摘要信息
|
|
1782
|
+
class ContractSummaryInfo < TencentCloud::Common::AbstractModel
|
|
1783
|
+
# @param Key: 字段 key
|
|
1784
|
+
# @type Key: String
|
|
1785
|
+
# @param Value: 字段值
|
|
1786
|
+
# @type Value: String
|
|
1787
|
+
# @param Identity: 主体信息
|
|
1788
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1789
|
+
# @type Identity: :class:`Tencentcloud::Ess.v20201111.models.Identity`
|
|
1790
|
+
|
|
1791
|
+
attr_accessor :Key, :Value, :Identity
|
|
1792
|
+
|
|
1793
|
+
def initialize(key=nil, value=nil, identity=nil)
|
|
1794
|
+
@Key = key
|
|
1795
|
+
@Value = value
|
|
1796
|
+
@Identity = identity
|
|
1797
|
+
end
|
|
1798
|
+
|
|
1799
|
+
def deserialize(params)
|
|
1800
|
+
@Key = params['Key']
|
|
1801
|
+
@Value = params['Value']
|
|
1802
|
+
unless params['Identity'].nil?
|
|
1803
|
+
@Identity = Identity.new
|
|
1804
|
+
@Identity.deserialize(params['Identity'])
|
|
1805
|
+
end
|
|
1806
|
+
end
|
|
1807
|
+
end
|
|
1808
|
+
|
|
1751
1809
|
# CreateBatchAdminChangeInvitations请求参数结构体
|
|
1752
1810
|
class CreateBatchAdminChangeInvitationsRequest < TencentCloud::Common::AbstractModel
|
|
1753
1811
|
# @param Operator: 执行本接口操作的员工信息。
|
|
@@ -9342,12 +9400,14 @@ module TencentCloud
|
|
|
9342
9400
|
# @param ApprovedLists: 通过项信息(详细引文信息)
|
|
9343
9401
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
9344
9402
|
# @type ApprovedLists: Array
|
|
9403
|
+
# @param Summaries: 摘要信息
|
|
9404
|
+
# @type Summaries: Array
|
|
9345
9405
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
9346
9406
|
# @type RequestId: String
|
|
9347
9407
|
|
|
9348
|
-
attr_accessor :ChecklistId, :CreatedOn, :FinishedOn, :PolicyType, :ResourceId, :Risks, :Role, :Status, :TaskId, :Comment, :UserData, :HighRiskCount, :TotalRiskCount, :ApprovedLists, :RequestId
|
|
9408
|
+
attr_accessor :ChecklistId, :CreatedOn, :FinishedOn, :PolicyType, :ResourceId, :Risks, :Role, :Status, :TaskId, :Comment, :UserData, :HighRiskCount, :TotalRiskCount, :ApprovedLists, :Summaries, :RequestId
|
|
9349
9409
|
|
|
9350
|
-
def initialize(checklistid=nil, createdon=nil, finishedon=nil, policytype=nil, resourceid=nil, risks=nil, role=nil, status=nil, taskid=nil, comment=nil, userdata=nil, highriskcount=nil, totalriskcount=nil, approvedlists=nil, requestid=nil)
|
|
9410
|
+
def initialize(checklistid=nil, createdon=nil, finishedon=nil, policytype=nil, resourceid=nil, risks=nil, role=nil, status=nil, taskid=nil, comment=nil, userdata=nil, highriskcount=nil, totalriskcount=nil, approvedlists=nil, summaries=nil, requestid=nil)
|
|
9351
9411
|
@ChecklistId = checklistid
|
|
9352
9412
|
@CreatedOn = createdon
|
|
9353
9413
|
@FinishedOn = finishedon
|
|
@@ -9362,6 +9422,7 @@ module TencentCloud
|
|
|
9362
9422
|
@HighRiskCount = highriskcount
|
|
9363
9423
|
@TotalRiskCount = totalriskcount
|
|
9364
9424
|
@ApprovedLists = approvedlists
|
|
9425
|
+
@Summaries = summaries
|
|
9365
9426
|
@RequestId = requestid
|
|
9366
9427
|
end
|
|
9367
9428
|
|
|
@@ -9397,6 +9458,14 @@ module TencentCloud
|
|
|
9397
9458
|
@ApprovedLists << outputreference_tmp
|
|
9398
9459
|
end
|
|
9399
9460
|
end
|
|
9461
|
+
unless params['Summaries'].nil?
|
|
9462
|
+
@Summaries = []
|
|
9463
|
+
params['Summaries'].each do |i|
|
|
9464
|
+
contractsummary_tmp = ContractSummary.new
|
|
9465
|
+
contractsummary_tmp.deserialize(i)
|
|
9466
|
+
@Summaries << contractsummary_tmp
|
|
9467
|
+
end
|
|
9468
|
+
end
|
|
9400
9469
|
@RequestId = params['RequestId']
|
|
9401
9470
|
end
|
|
9402
9471
|
end
|
|
@@ -13800,6 +13869,133 @@ module TencentCloud
|
|
|
13800
13869
|
end
|
|
13801
13870
|
end
|
|
13802
13871
|
|
|
13872
|
+
# 主体信息
|
|
13873
|
+
class Identity < TencentCloud::Common::AbstractModel
|
|
13874
|
+
# @param CreditCode: 统一社会信用代码
|
|
13875
|
+
# @type CreditCode: String
|
|
13876
|
+
# @param OrgCode: 组织机构代码
|
|
13877
|
+
# @type OrgCode: String
|
|
13878
|
+
# @param RegNo: 营业执照注册编号
|
|
13879
|
+
# @type RegNo: String
|
|
13880
|
+
# @param EntName: 企业名称
|
|
13881
|
+
# @type EntName: String
|
|
13882
|
+
# @param LegalRepName: 修改人法人代表姓名
|
|
13883
|
+
# @type LegalRepName: String
|
|
13884
|
+
# @param OpState: 渠道经营状态
|
|
13885
|
+
# @type OpState: String
|
|
13886
|
+
# @param OpFromDate: 经营期限自(格式YYYY-MM-DD)
|
|
13887
|
+
# @type OpFromDate: String
|
|
13888
|
+
# @param OpToDate: 经营期限至
|
|
13889
|
+
# @type OpToDate: String
|
|
13890
|
+
# @param EstabDate: 成立日期(格式YYYY-MM-DD)
|
|
13891
|
+
# @type EstabDate: String
|
|
13892
|
+
# @param ApprDate: 核准日期(格式YYYY-MM-DD)
|
|
13893
|
+
# @type ApprDate: String
|
|
13894
|
+
# @param RevoDate: 吊销日期(格式YYYY-MM-DD)
|
|
13895
|
+
# @type RevoDate: String
|
|
13896
|
+
# @param CancelDate: 注销日期(格式YYYY-MM-DD)
|
|
13897
|
+
# @type CancelDate: String
|
|
13898
|
+
# @param RegOrg: 登记机关
|
|
13899
|
+
# @type RegOrg: String
|
|
13900
|
+
# @param EntTypeCode: 企业类型编码
|
|
13901
|
+
# @type EntTypeCode: String
|
|
13902
|
+
# @param EntType: 企业类型
|
|
13903
|
+
# @type EntType: String
|
|
13904
|
+
# @param BizScope: 经营业务范围
|
|
13905
|
+
# @type BizScope: String
|
|
13906
|
+
# @param LicenseBizItem: 许可经营项目
|
|
13907
|
+
# @type LicenseBizItem: String
|
|
13908
|
+
# @param RegAreaCode: 注册地址行政编号
|
|
13909
|
+
# @type RegAreaCode: String
|
|
13910
|
+
# @param RegAddress: 注册地址
|
|
13911
|
+
# @type RegAddress: String
|
|
13912
|
+
# @param RegCapitalCurtype: 注册资本币种
|
|
13913
|
+
# @type RegCapitalCurtype: String
|
|
13914
|
+
# @param RegCapital: 注册资本(万元)
|
|
13915
|
+
# @type RegCapital: String
|
|
13916
|
+
# @param PaidCapital: 实收资本(万元)
|
|
13917
|
+
# @type PaidCapital: String
|
|
13918
|
+
# @param OriRegNo: 原注册号
|
|
13919
|
+
# @type OriRegNo: String
|
|
13920
|
+
# @param EntNameEng: 企业英文名称
|
|
13921
|
+
# @type EntNameEng: String
|
|
13922
|
+
# @param OriEntName: 曾用名
|
|
13923
|
+
# @type OriEntName: String
|
|
13924
|
+
# @param OpStateCode: 企业经营状态枚举。常见值如下:
|
|
13925
|
+
# 未定义的状态 = 0
|
|
13926
|
+
# 正常 = 1
|
|
13927
|
+
# 注销 = 2
|
|
13928
|
+
# 吊销 = 3
|
|
13929
|
+
# 吊销后注销 = 4
|
|
13930
|
+
# 撤销 = 5
|
|
13931
|
+
# 其他 = 99
|
|
13932
|
+
# @type OpStateCode: Integer
|
|
13933
|
+
# @param SearchDate: 查询日期(格式YYYY-MM-DD)
|
|
13934
|
+
# @type SearchDate: String
|
|
13935
|
+
|
|
13936
|
+
attr_accessor :CreditCode, :OrgCode, :RegNo, :EntName, :LegalRepName, :OpState, :OpFromDate, :OpToDate, :EstabDate, :ApprDate, :RevoDate, :CancelDate, :RegOrg, :EntTypeCode, :EntType, :BizScope, :LicenseBizItem, :RegAreaCode, :RegAddress, :RegCapitalCurtype, :RegCapital, :PaidCapital, :OriRegNo, :EntNameEng, :OriEntName, :OpStateCode, :SearchDate
|
|
13937
|
+
|
|
13938
|
+
def initialize(creditcode=nil, orgcode=nil, regno=nil, entname=nil, legalrepname=nil, opstate=nil, opfromdate=nil, optodate=nil, estabdate=nil, apprdate=nil, revodate=nil, canceldate=nil, regorg=nil, enttypecode=nil, enttype=nil, bizscope=nil, licensebizitem=nil, regareacode=nil, regaddress=nil, regcapitalcurtype=nil, regcapital=nil, paidcapital=nil, oriregno=nil, entnameeng=nil, orientname=nil, opstatecode=nil, searchdate=nil)
|
|
13939
|
+
@CreditCode = creditcode
|
|
13940
|
+
@OrgCode = orgcode
|
|
13941
|
+
@RegNo = regno
|
|
13942
|
+
@EntName = entname
|
|
13943
|
+
@LegalRepName = legalrepname
|
|
13944
|
+
@OpState = opstate
|
|
13945
|
+
@OpFromDate = opfromdate
|
|
13946
|
+
@OpToDate = optodate
|
|
13947
|
+
@EstabDate = estabdate
|
|
13948
|
+
@ApprDate = apprdate
|
|
13949
|
+
@RevoDate = revodate
|
|
13950
|
+
@CancelDate = canceldate
|
|
13951
|
+
@RegOrg = regorg
|
|
13952
|
+
@EntTypeCode = enttypecode
|
|
13953
|
+
@EntType = enttype
|
|
13954
|
+
@BizScope = bizscope
|
|
13955
|
+
@LicenseBizItem = licensebizitem
|
|
13956
|
+
@RegAreaCode = regareacode
|
|
13957
|
+
@RegAddress = regaddress
|
|
13958
|
+
@RegCapitalCurtype = regcapitalcurtype
|
|
13959
|
+
@RegCapital = regcapital
|
|
13960
|
+
@PaidCapital = paidcapital
|
|
13961
|
+
@OriRegNo = oriregno
|
|
13962
|
+
@EntNameEng = entnameeng
|
|
13963
|
+
@OriEntName = orientname
|
|
13964
|
+
@OpStateCode = opstatecode
|
|
13965
|
+
@SearchDate = searchdate
|
|
13966
|
+
end
|
|
13967
|
+
|
|
13968
|
+
def deserialize(params)
|
|
13969
|
+
@CreditCode = params['CreditCode']
|
|
13970
|
+
@OrgCode = params['OrgCode']
|
|
13971
|
+
@RegNo = params['RegNo']
|
|
13972
|
+
@EntName = params['EntName']
|
|
13973
|
+
@LegalRepName = params['LegalRepName']
|
|
13974
|
+
@OpState = params['OpState']
|
|
13975
|
+
@OpFromDate = params['OpFromDate']
|
|
13976
|
+
@OpToDate = params['OpToDate']
|
|
13977
|
+
@EstabDate = params['EstabDate']
|
|
13978
|
+
@ApprDate = params['ApprDate']
|
|
13979
|
+
@RevoDate = params['RevoDate']
|
|
13980
|
+
@CancelDate = params['CancelDate']
|
|
13981
|
+
@RegOrg = params['RegOrg']
|
|
13982
|
+
@EntTypeCode = params['EntTypeCode']
|
|
13983
|
+
@EntType = params['EntType']
|
|
13984
|
+
@BizScope = params['BizScope']
|
|
13985
|
+
@LicenseBizItem = params['LicenseBizItem']
|
|
13986
|
+
@RegAreaCode = params['RegAreaCode']
|
|
13987
|
+
@RegAddress = params['RegAddress']
|
|
13988
|
+
@RegCapitalCurtype = params['RegCapitalCurtype']
|
|
13989
|
+
@RegCapital = params['RegCapital']
|
|
13990
|
+
@PaidCapital = params['PaidCapital']
|
|
13991
|
+
@OriRegNo = params['OriRegNo']
|
|
13992
|
+
@EntNameEng = params['EntNameEng']
|
|
13993
|
+
@OriEntName = params['OriEntName']
|
|
13994
|
+
@OpStateCode = params['OpStateCode']
|
|
13995
|
+
@SearchDate = params['SearchDate']
|
|
13996
|
+
end
|
|
13997
|
+
end
|
|
13998
|
+
|
|
13803
13999
|
# 企业角色数据信息
|
|
13804
14000
|
class IntegrateRole < TencentCloud::Common::AbstractModel
|
|
13805
14001
|
# @param RoleId: 角色id
|
|
@@ -15220,10 +15416,20 @@ module TencentCloud
|
|
|
15220
15416
|
# @type RiskBasis: String
|
|
15221
15417
|
# @param RiskLevelId: 风险等级id。1 为最高风险等级,0 为最低风险等级,从[2,n]数字越大风险等级逐渐降低。
|
|
15222
15418
|
# @type RiskLevelId: Integer
|
|
15419
|
+
# @param RiskLabels: 风险标签
|
|
15420
|
+
# @type RiskLabels: Array
|
|
15421
|
+
# @param RiskOrigin: 风险来源 0:模型标注的风险 1:人工标注的风险
|
|
15422
|
+
# @type RiskOrigin: Integer
|
|
15423
|
+
# @param Creator: 创建人
|
|
15424
|
+
# @type Creator: String
|
|
15425
|
+
# @param CreatorId: 创建人ID
|
|
15426
|
+
# @type CreatorId: String
|
|
15427
|
+
# @param CreatedOn: 创建时间
|
|
15428
|
+
# @type CreatedOn: Integer
|
|
15223
15429
|
|
|
15224
|
-
attr_accessor :RiskId, :RiskName, :RiskDescription, :RiskLevel, :RiskAdvice, :RiskPresentation, :Content, :Positions, :RiskBasis, :RiskLevelId
|
|
15430
|
+
attr_accessor :RiskId, :RiskName, :RiskDescription, :RiskLevel, :RiskAdvice, :RiskPresentation, :Content, :Positions, :RiskBasis, :RiskLevelId, :RiskLabels, :RiskOrigin, :Creator, :CreatorId, :CreatedOn
|
|
15225
15431
|
|
|
15226
|
-
def initialize(riskid=nil, riskname=nil, riskdescription=nil, risklevel=nil, riskadvice=nil, riskpresentation=nil, content=nil, positions=nil, riskbasis=nil, risklevelid=nil)
|
|
15432
|
+
def initialize(riskid=nil, riskname=nil, riskdescription=nil, risklevel=nil, riskadvice=nil, riskpresentation=nil, content=nil, positions=nil, riskbasis=nil, risklevelid=nil, risklabels=nil, riskorigin=nil, creator=nil, creatorid=nil, createdon=nil)
|
|
15227
15433
|
@RiskId = riskid
|
|
15228
15434
|
@RiskName = riskname
|
|
15229
15435
|
@RiskDescription = riskdescription
|
|
@@ -15234,6 +15440,11 @@ module TencentCloud
|
|
|
15234
15440
|
@Positions = positions
|
|
15235
15441
|
@RiskBasis = riskbasis
|
|
15236
15442
|
@RiskLevelId = risklevelid
|
|
15443
|
+
@RiskLabels = risklabels
|
|
15444
|
+
@RiskOrigin = riskorigin
|
|
15445
|
+
@Creator = creator
|
|
15446
|
+
@CreatorId = creatorid
|
|
15447
|
+
@CreatedOn = createdon
|
|
15237
15448
|
end
|
|
15238
15449
|
|
|
15239
15450
|
def deserialize(params)
|
|
@@ -15254,6 +15465,11 @@ module TencentCloud
|
|
|
15254
15465
|
end
|
|
15255
15466
|
@RiskBasis = params['RiskBasis']
|
|
15256
15467
|
@RiskLevelId = params['RiskLevelId']
|
|
15468
|
+
@RiskLabels = params['RiskLabels']
|
|
15469
|
+
@RiskOrigin = params['RiskOrigin']
|
|
15470
|
+
@Creator = params['Creator']
|
|
15471
|
+
@CreatorId = params['CreatorId']
|
|
15472
|
+
@CreatedOn = params['CreatedOn']
|
|
15257
15473
|
end
|
|
15258
15474
|
end
|
|
15259
15475
|
|
|
@@ -15441,16 +15657,25 @@ module TencentCloud
|
|
|
15441
15657
|
# @type PageIndex: Integer
|
|
15442
15658
|
# @param Id: 系统生成的唯一ID值
|
|
15443
15659
|
# @type Id: String
|
|
15660
|
+
# @param Begin: 开始位置
|
|
15661
|
+
# @type Begin: Integer
|
|
15662
|
+
# @param End: 结束位置
|
|
15663
|
+
# @type End: Integer
|
|
15664
|
+
# @param DocType: 文档类型,1:pdf,2:doc 文档
|
|
15665
|
+
# @type DocType: Integer
|
|
15444
15666
|
|
|
15445
|
-
attr_accessor :X, :Y, :Width, :Height, :PageIndex, :Id
|
|
15667
|
+
attr_accessor :X, :Y, :Width, :Height, :PageIndex, :Id, :Begin, :End, :DocType
|
|
15446
15668
|
|
|
15447
|
-
def initialize(x=nil, y=nil, width=nil, height=nil, pageindex=nil, id=nil)
|
|
15669
|
+
def initialize(x=nil, y=nil, width=nil, height=nil, pageindex=nil, id=nil, _begin=nil, _end=nil, doctype=nil)
|
|
15448
15670
|
@X = x
|
|
15449
15671
|
@Y = y
|
|
15450
15672
|
@Width = width
|
|
15451
15673
|
@Height = height
|
|
15452
15674
|
@PageIndex = pageindex
|
|
15453
15675
|
@Id = id
|
|
15676
|
+
@Begin = _begin
|
|
15677
|
+
@End = _end
|
|
15678
|
+
@DocType = doctype
|
|
15454
15679
|
end
|
|
15455
15680
|
|
|
15456
15681
|
def deserialize(params)
|
|
@@ -15460,6 +15685,9 @@ module TencentCloud
|
|
|
15460
15685
|
@Height = params['Height']
|
|
15461
15686
|
@PageIndex = params['PageIndex']
|
|
15462
15687
|
@Id = params['Id']
|
|
15688
|
+
@Begin = params['Begin']
|
|
15689
|
+
@End = params['End']
|
|
15690
|
+
@DocType = params['DocType']
|
|
15463
15691
|
end
|
|
15464
15692
|
end
|
|
15465
15693
|
|
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.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-
|
|
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
|