tencentcloud-sdk-essbasic 3.0.918 → 3.0.920
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210526/client.rb +38 -0
- data/lib/v20210526/models.rb +203 -141
- 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: 2f665270a1befc99bfcf732c6f15863d50c8b5d1
|
4
|
+
data.tar.gz: 9255e517d03f315559305ad59055f87e283e02d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e25d8e6cd0811ecea2836b00817e29b350424443ad5c5ea69a19c6082f48af1623e0c97f5a9b492d37343bdbe963f5d46b1e815aaf7bbddce445bb330a96e547
|
7
|
+
data.tar.gz: 6cc7bffcb7ce7c459e444abd333a93f2e390a5b7da9ae099e29b7d7e4819347efdb93c8187933b81c799b8ed57a5907e14418b7406c6171b72426a5aed7a4b32
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.920
|
data/lib/v20210526/client.rb
CHANGED
@@ -1728,6 +1728,44 @@ module TencentCloud
|
|
1728
1728
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1729
1729
|
end
|
1730
1730
|
|
1731
|
+
# 激活或续期子客企业, 在激活状态下,企业可以正常发起合同;在非激活状态下,企业仅能查看和签署合同。
|
1732
|
+
|
1733
|
+
# **1. 激活**:使用一个许可证将子客企业从未激活状态转变为激活状态。**激活状态的有效期为一年,一年后将自动回到未激活状态**。
|
1734
|
+
|
1735
|
+
# **2. 续期**:使用一个许可证将已激活的子客企业的有效期延长一年。只有处于激活状态的子企业才能进行续期操作(**若处于非激活状态,则需先激活**)。您可以使用多个许可证对同一子客企业进行多次续费。
|
1736
|
+
|
1737
|
+
|
1738
|
+
# 该接口的效果同:**【企业应用管理】 -> 【子客企业管理】 -> 【激活】或者【续期】**
|
1739
|
+
|
1740
|
+
# ![image](https://qcloudimg.tencent-cloud.cn/raw/cd63761ca6e814c64b4ecf131555b74e.png)
|
1741
|
+
|
1742
|
+
|
1743
|
+
# 如果不想调用此接口或者页面点击进行激活或续期,可以在【应用扩展服务】中打开自动激活或续期,在许可证充足的情况下会自动激活或续期子客企业
|
1744
|
+
|
1745
|
+
# ![image](https://qcloudimg.tencent-cloud.cn/raw/2ccb37ef6bde463c15c39fdda789216f.png)
|
1746
|
+
|
1747
|
+
# @param request: Request instance for CreateChannelSubOrganizationActive.
|
1748
|
+
# @type request: :class:`Tencentcloud::essbasic::V20210526::CreateChannelSubOrganizationActiveRequest`
|
1749
|
+
# @rtype: :class:`Tencentcloud::essbasic::V20210526::CreateChannelSubOrganizationActiveResponse`
|
1750
|
+
def CreateChannelSubOrganizationActive(request)
|
1751
|
+
body = send_request('CreateChannelSubOrganizationActive', request.serialize)
|
1752
|
+
response = JSON.parse(body)
|
1753
|
+
if response['Response'].key?('Error') == false
|
1754
|
+
model = CreateChannelSubOrganizationActiveResponse.new
|
1755
|
+
model.deserialize(response['Response'])
|
1756
|
+
model
|
1757
|
+
else
|
1758
|
+
code = response['Response']['Error']['Code']
|
1759
|
+
message = response['Response']['Error']['Message']
|
1760
|
+
reqid = response['Response']['RequestId']
|
1761
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1762
|
+
end
|
1763
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1764
|
+
raise e
|
1765
|
+
rescue StandardError => e
|
1766
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1767
|
+
end
|
1768
|
+
|
1731
1769
|
# 此接口(CreateConsoleLoginUrl)用于创建第三方平台子客企业控制台Web/移动登录链接。支持web控制台、电子签小程序和H5链接。登录链接是进入子客web企业控制台的唯一入口。
|
1732
1770
|
|
1733
1771
|
# Web链接访问后,会根据子客企业(**Agent中ProxyOrganizationOpenId表示**)和员工(**Agent中OpenId表示**)的状态,进入不同的流程,主要情况分类如下:
|
data/lib/v20210526/models.rb
CHANGED
@@ -37,8 +37,8 @@ module TencentCloud
|
|
37
37
|
|
38
38
|
attr_accessor :AppId, :ProxyOrganizationOpenId, :ProxyOperator, :ProxyAppId, :ProxyOrganizationId
|
39
39
|
extend Gem::Deprecate
|
40
|
-
deprecate :ProxyOrganizationId, :none, 2024,
|
41
|
-
deprecate :ProxyOrganizationId=, :none, 2024,
|
40
|
+
deprecate :ProxyOrganizationId, :none, 2024, 10
|
41
|
+
deprecate :ProxyOrganizationId=, :none, 2024, 10
|
42
42
|
|
43
43
|
def initialize(appid=nil, proxyorganizationopenid=nil, proxyoperator=nil, proxyappid=nil, proxyorganizationid=nil)
|
44
44
|
@AppId = appid
|
@@ -330,8 +330,8 @@ module TencentCloud
|
|
330
330
|
|
331
331
|
attr_accessor :UserInfo, :CertInfoCallback, :UserDefineSeal, :SealImgCallback, :CallbackUrl, :VerifyChannels, :LicenseType, :JumpUrl
|
332
332
|
extend Gem::Deprecate
|
333
|
-
deprecate :CallbackUrl, :none, 2024,
|
334
|
-
deprecate :CallbackUrl=, :none, 2024,
|
333
|
+
deprecate :CallbackUrl, :none, 2024, 10
|
334
|
+
deprecate :CallbackUrl=, :none, 2024, 10
|
335
335
|
|
336
336
|
def initialize(userinfo=nil, certinfocallback=nil, userdefineseal=nil, sealimgcallback=nil, callbackurl=nil, verifychannels=nil, licensetype=nil, jumpurl=nil)
|
337
337
|
@UserInfo = userinfo
|
@@ -543,8 +543,8 @@ module TencentCloud
|
|
543
543
|
|
544
544
|
attr_accessor :Agent, :FlowIds, :CancelMessage, :CancelMessageFormat, :Operator
|
545
545
|
extend Gem::Deprecate
|
546
|
-
deprecate :Operator, :none, 2024,
|
547
|
-
deprecate :Operator=, :none, 2024,
|
546
|
+
deprecate :Operator, :none, 2024, 10
|
547
|
+
deprecate :Operator=, :none, 2024, 10
|
548
548
|
|
549
549
|
def initialize(agent=nil, flowids=nil, cancelmessage=nil, cancelmessageformat=nil, operator=nil)
|
550
550
|
@Agent = agent
|
@@ -715,8 +715,8 @@ module TencentCloud
|
|
715
715
|
|
716
716
|
attr_accessor :FlowId, :Agent, :CancelMessage, :CancelMessageFormat, :Operator
|
717
717
|
extend Gem::Deprecate
|
718
|
-
deprecate :Operator, :none, 2024,
|
719
|
-
deprecate :Operator=, :none, 2024,
|
718
|
+
deprecate :Operator, :none, 2024, 10
|
719
|
+
deprecate :Operator=, :none, 2024, 10
|
720
720
|
|
721
721
|
def initialize(flowid=nil, agent=nil, cancelmessage=nil, cancelmessageformat=nil, operator=nil)
|
722
722
|
@FlowId = flowid
|
@@ -776,8 +776,8 @@ module TencentCloud
|
|
776
776
|
|
777
777
|
attr_accessor :Agent, :QrCodeId, :Operator
|
778
778
|
extend Gem::Deprecate
|
779
|
-
deprecate :Operator, :none, 2024,
|
780
|
-
deprecate :Operator=, :none, 2024,
|
779
|
+
deprecate :Operator, :none, 2024, 10
|
780
|
+
deprecate :Operator=, :none, 2024, 10
|
781
781
|
|
782
782
|
def initialize(agent=nil, qrcodeid=nil, operator=nil)
|
783
783
|
@Agent = agent
|
@@ -887,8 +887,8 @@ module TencentCloud
|
|
887
887
|
|
888
888
|
attr_accessor :Agent, :FlowIds, :Operator
|
889
889
|
extend Gem::Deprecate
|
890
|
-
deprecate :Operator, :none, 2024,
|
891
|
-
deprecate :Operator=, :none, 2024,
|
890
|
+
deprecate :Operator, :none, 2024, 10
|
891
|
+
deprecate :Operator=, :none, 2024, 10
|
892
892
|
|
893
893
|
def initialize(agent=nil, flowids=nil, operator=nil)
|
894
894
|
@Agent = agent
|
@@ -1225,8 +1225,8 @@ module TencentCloud
|
|
1225
1225
|
|
1226
1226
|
attr_accessor :Agent, :FlowIds, :Operator
|
1227
1227
|
extend Gem::Deprecate
|
1228
|
-
deprecate :Operator, :none, 2024,
|
1229
|
-
deprecate :Operator=, :none, 2024,
|
1228
|
+
deprecate :Operator, :none, 2024, 10
|
1229
|
+
deprecate :Operator=, :none, 2024, 10
|
1230
1230
|
|
1231
1231
|
def initialize(agent=nil, flowids=nil, operator=nil)
|
1232
1232
|
@Agent = agent
|
@@ -1303,10 +1303,10 @@ module TencentCloud
|
|
1303
1303
|
|
1304
1304
|
attr_accessor :Agent, :ResourceType, :ResourceName, :ResourceId, :Operator, :Organization
|
1305
1305
|
extend Gem::Deprecate
|
1306
|
-
deprecate :Operator, :none, 2024,
|
1307
|
-
deprecate :Operator=, :none, 2024,
|
1308
|
-
deprecate :Organization, :none, 2024,
|
1309
|
-
deprecate :Organization=, :none, 2024,
|
1306
|
+
deprecate :Operator, :none, 2024, 10
|
1307
|
+
deprecate :Operator=, :none, 2024, 10
|
1308
|
+
deprecate :Organization, :none, 2024, 10
|
1309
|
+
deprecate :Organization=, :none, 2024, 10
|
1310
1310
|
|
1311
1311
|
def initialize(agent=nil, resourcetype=nil, resourcename=nil, resourceid=nil, operator=nil, organization=nil)
|
1312
1312
|
@Agent = agent
|
@@ -1411,8 +1411,8 @@ module TencentCloud
|
|
1411
1411
|
|
1412
1412
|
attr_accessor :Agent, :EmbedType, :BusinessId, :HiddenComponents, :Operator, :UserData, :Option
|
1413
1413
|
extend Gem::Deprecate
|
1414
|
-
deprecate :Operator, :none, 2024,
|
1415
|
-
deprecate :Operator=, :none, 2024,
|
1414
|
+
deprecate :Operator, :none, 2024, 10
|
1415
|
+
deprecate :Operator=, :none, 2024, 10
|
1416
1416
|
|
1417
1417
|
def initialize(agent=nil, embedtype=nil, businessid=nil, hiddencomponents=nil, operator=nil, userdata=nil, option=nil)
|
1418
1418
|
@Agent = agent
|
@@ -1653,10 +1653,10 @@ module TencentCloud
|
|
1653
1653
|
|
1654
1654
|
attr_accessor :Agent, :FlowName, :FlowDescription, :FlowApprovers, :FileIds, :Components, :Deadline, :CallbackUrl, :Unordered, :FlowType, :CustomShowMap, :CustomerData, :NeedSignReview, :ApproverVerifyType, :SignBeanTag, :CcInfos, :CcNotifyType, :AutoSignScene, :Operator, :FlowDisplayType
|
1655
1655
|
extend Gem::Deprecate
|
1656
|
-
deprecate :CallbackUrl, :none, 2024,
|
1657
|
-
deprecate :CallbackUrl=, :none, 2024,
|
1658
|
-
deprecate :Operator, :none, 2024,
|
1659
|
-
deprecate :Operator=, :none, 2024,
|
1656
|
+
deprecate :CallbackUrl, :none, 2024, 10
|
1657
|
+
deprecate :CallbackUrl=, :none, 2024, 10
|
1658
|
+
deprecate :Operator, :none, 2024, 10
|
1659
|
+
deprecate :Operator=, :none, 2024, 10
|
1660
1660
|
|
1661
1661
|
def initialize(agent=nil, flowname=nil, flowdescription=nil, flowapprovers=nil, fileids=nil, components=nil, deadline=nil, callbackurl=nil, unordered=nil, flowtype=nil, customshowmap=nil, customerdata=nil, needsignreview=nil, approververifytype=nil, signbeantag=nil, ccinfos=nil, ccnotifytype=nil, autosignscene=nil, operator=nil, flowdisplaytype=nil)
|
1662
1662
|
@Agent = agent
|
@@ -1798,8 +1798,8 @@ module TencentCloud
|
|
1798
1798
|
|
1799
1799
|
attr_accessor :FlowFileInfos, :FlowGroupName, :Agent, :ApproverVerifyType, :FlowGroupOptions, :Operator
|
1800
1800
|
extend Gem::Deprecate
|
1801
|
-
deprecate :Operator, :none, 2024,
|
1802
|
-
deprecate :Operator=, :none, 2024,
|
1801
|
+
deprecate :Operator, :none, 2024, 10
|
1802
|
+
deprecate :Operator=, :none, 2024, 10
|
1803
1803
|
|
1804
1804
|
def initialize(flowfileinfos=nil, flowgroupname=nil, agent=nil, approververifytype=nil, flowgroupoptions=nil, operator=nil)
|
1805
1805
|
@FlowFileInfos = flowfileinfos
|
@@ -2144,10 +2144,10 @@ module TencentCloud
|
|
2144
2144
|
|
2145
2145
|
attr_accessor :Agent, :FlowId, :FlowApproverInfos, :Operator, :Organization, :JumpUrl, :UrlType
|
2146
2146
|
extend Gem::Deprecate
|
2147
|
-
deprecate :Operator, :none, 2024,
|
2148
|
-
deprecate :Operator=, :none, 2024,
|
2149
|
-
deprecate :Organization, :none, 2024,
|
2150
|
-
deprecate :Organization=, :none, 2024,
|
2147
|
+
deprecate :Operator, :none, 2024, 10
|
2148
|
+
deprecate :Operator=, :none, 2024, 10
|
2149
|
+
deprecate :Organization, :none, 2024, 10
|
2150
|
+
deprecate :Organization=, :none, 2024, 10
|
2151
2151
|
|
2152
2152
|
def initialize(agent=nil, flowid=nil, flowapproverinfos=nil, operator=nil, organization=nil, jumpurl=nil, urltype=nil)
|
2153
2153
|
@Agent = agent
|
@@ -2250,12 +2250,12 @@ module TencentCloud
|
|
2250
2250
|
|
2251
2251
|
attr_accessor :Agent, :TemplateId, :FlowName, :MaxFlowNum, :FlowEffectiveDay, :QrEffectiveDay, :Restrictions, :ApproverComponentLimitTypes, :CallbackUrl, :ApproverRestrictions, :Operator
|
2252
2252
|
extend Gem::Deprecate
|
2253
|
-
deprecate :CallbackUrl, :none, 2024,
|
2254
|
-
deprecate :CallbackUrl=, :none, 2024,
|
2255
|
-
deprecate :ApproverRestrictions, :none, 2024,
|
2256
|
-
deprecate :ApproverRestrictions=, :none, 2024,
|
2257
|
-
deprecate :Operator, :none, 2024,
|
2258
|
-
deprecate :Operator=, :none, 2024,
|
2253
|
+
deprecate :CallbackUrl, :none, 2024, 10
|
2254
|
+
deprecate :CallbackUrl=, :none, 2024, 10
|
2255
|
+
deprecate :ApproverRestrictions, :none, 2024, 10
|
2256
|
+
deprecate :ApproverRestrictions=, :none, 2024, 10
|
2257
|
+
deprecate :Operator, :none, 2024, 10
|
2258
|
+
deprecate :Operator=, :none, 2024, 10
|
2259
2259
|
|
2260
2260
|
def initialize(agent=nil, templateid=nil, flowname=nil, maxflownum=nil, floweffectiveday=nil, qreffectiveday=nil, restrictions=nil, approvercomponentlimittypes=nil, callbackurl=nil, approverrestrictions=nil, operator=nil)
|
2261
2261
|
@Agent = agent
|
@@ -2497,12 +2497,12 @@ module TencentCloud
|
|
2497
2497
|
|
2498
2498
|
attr_accessor :ResourceType, :FlowInfo, :Agent, :ResourceId, :FlowOption, :FlowApproverList, :FlowId, :NeedPreview, :Organization, :Operator
|
2499
2499
|
extend Gem::Deprecate
|
2500
|
-
deprecate :NeedPreview, :none, 2024,
|
2501
|
-
deprecate :NeedPreview=, :none, 2024,
|
2502
|
-
deprecate :Organization, :none, 2024,
|
2503
|
-
deprecate :Organization=, :none, 2024,
|
2504
|
-
deprecate :Operator, :none, 2024,
|
2505
|
-
deprecate :Operator=, :none, 2024,
|
2500
|
+
deprecate :NeedPreview, :none, 2024, 10
|
2501
|
+
deprecate :NeedPreview=, :none, 2024, 10
|
2502
|
+
deprecate :Organization, :none, 2024, 10
|
2503
|
+
deprecate :Organization=, :none, 2024, 10
|
2504
|
+
deprecate :Operator, :none, 2024, 10
|
2505
|
+
deprecate :Operator=, :none, 2024, 10
|
2506
2506
|
|
2507
2507
|
def initialize(resourcetype=nil, flowinfo=nil, agent=nil, resourceid=nil, flowoption=nil, flowapproverlist=nil, flowid=nil, needpreview=nil, organization=nil, operator=nil)
|
2508
2508
|
@ResourceType = resourcetype
|
@@ -2727,12 +2727,12 @@ module TencentCloud
|
|
2727
2727
|
|
2728
2728
|
attr_accessor :Agent, :NeedRelievedFlowId, :ReliveInfo, :ReleasedApprovers, :CallbackUrl, :Organization, :Operator, :Deadline, :UserData
|
2729
2729
|
extend Gem::Deprecate
|
2730
|
-
deprecate :CallbackUrl, :none, 2024,
|
2731
|
-
deprecate :CallbackUrl=, :none, 2024,
|
2732
|
-
deprecate :Organization, :none, 2024,
|
2733
|
-
deprecate :Organization=, :none, 2024,
|
2734
|
-
deprecate :Operator, :none, 2024,
|
2735
|
-
deprecate :Operator=, :none, 2024,
|
2730
|
+
deprecate :CallbackUrl, :none, 2024, 10
|
2731
|
+
deprecate :CallbackUrl=, :none, 2024, 10
|
2732
|
+
deprecate :Organization, :none, 2024, 10
|
2733
|
+
deprecate :Organization=, :none, 2024, 10
|
2734
|
+
deprecate :Operator, :none, 2024, 10
|
2735
|
+
deprecate :Operator=, :none, 2024, 10
|
2736
2736
|
|
2737
2737
|
def initialize(agent=nil, needrelievedflowid=nil, reliveinfo=nil, releasedapprovers=nil, callbackurl=nil, organization=nil, operator=nil, deadline=nil, userdata=nil)
|
2738
2738
|
@Agent = agent
|
@@ -2893,10 +2893,10 @@ module TencentCloud
|
|
2893
2893
|
|
2894
2894
|
attr_accessor :Agent, :SealId, :UserIds, :Operator, :Organization
|
2895
2895
|
extend Gem::Deprecate
|
2896
|
-
deprecate :Operator, :none, 2024,
|
2897
|
-
deprecate :Operator=, :none, 2024,
|
2898
|
-
deprecate :Organization, :none, 2024,
|
2899
|
-
deprecate :Organization=, :none, 2024,
|
2896
|
+
deprecate :Operator, :none, 2024, 10
|
2897
|
+
deprecate :Operator=, :none, 2024, 10
|
2898
|
+
deprecate :Organization, :none, 2024, 10
|
2899
|
+
deprecate :Organization=, :none, 2024, 10
|
2900
2900
|
|
2901
2901
|
def initialize(agent=nil, sealid=nil, userids=nil, operator=nil, organization=nil)
|
2902
2902
|
@Agent = agent
|
@@ -3160,8 +3160,8 @@ module TencentCloud
|
|
3160
3160
|
|
3161
3161
|
attr_accessor :Agent, :RoleIds, :UserIds, :OpenIds, :Operator
|
3162
3162
|
extend Gem::Deprecate
|
3163
|
-
deprecate :Operator, :none, 2024,
|
3164
|
-
deprecate :Operator=, :none, 2024,
|
3163
|
+
deprecate :Operator, :none, 2024, 10
|
3164
|
+
deprecate :Operator=, :none, 2024, 10
|
3165
3165
|
|
3166
3166
|
def initialize(agent=nil, roleids=nil, userids=nil, openids=nil, operator=nil)
|
3167
3167
|
@Agent = agent
|
@@ -3326,8 +3326,8 @@ module TencentCloud
|
|
3326
3326
|
|
3327
3327
|
attr_accessor :Agent, :RoleId, :UserIds, :Operator, :OpenIds
|
3328
3328
|
extend Gem::Deprecate
|
3329
|
-
deprecate :Operator, :none, 2024,
|
3330
|
-
deprecate :Operator=, :none, 2024,
|
3329
|
+
deprecate :Operator, :none, 2024, 10
|
3330
|
+
deprecate :Operator=, :none, 2024, 10
|
3331
3331
|
|
3332
3332
|
def initialize(agent=nil, roleid=nil, userids=nil, operator=nil, openids=nil)
|
3333
3333
|
@Agent = agent
|
@@ -3389,10 +3389,10 @@ module TencentCloud
|
|
3389
3389
|
|
3390
3390
|
attr_accessor :Agent, :SealId, :UserIds, :Organization, :Operator
|
3391
3391
|
extend Gem::Deprecate
|
3392
|
-
deprecate :Organization, :none, 2024,
|
3393
|
-
deprecate :Organization=, :none, 2024,
|
3394
|
-
deprecate :Operator, :none, 2024,
|
3395
|
-
deprecate :Operator=, :none, 2024,
|
3392
|
+
deprecate :Organization, :none, 2024, 10
|
3393
|
+
deprecate :Organization=, :none, 2024, 10
|
3394
|
+
deprecate :Operator, :none, 2024, 10
|
3395
|
+
deprecate :Operator=, :none, 2024, 10
|
3396
3396
|
|
3397
3397
|
def initialize(agent=nil, sealid=nil, userids=nil, organization=nil, operator=nil)
|
3398
3398
|
@Agent = agent
|
@@ -3559,8 +3559,8 @@ module TencentCloud
|
|
3559
3559
|
|
3560
3560
|
attr_accessor :Agent, :Limit, :Filters, :Offset, :Operator
|
3561
3561
|
extend Gem::Deprecate
|
3562
|
-
deprecate :Operator, :none, 2024,
|
3563
|
-
deprecate :Operator=, :none, 2024,
|
3562
|
+
deprecate :Operator, :none, 2024, 10
|
3563
|
+
deprecate :Operator=, :none, 2024, 10
|
3564
3564
|
|
3565
3565
|
def initialize(agent=nil, limit=nil, filters=nil, offset=nil, operator=nil)
|
3566
3566
|
@Agent = agent
|
@@ -3816,8 +3816,8 @@ module TencentCloud
|
|
3816
3816
|
|
3817
3817
|
attr_accessor :Agent, :Limit, :Filters, :Offset, :Operator
|
3818
3818
|
extend Gem::Deprecate
|
3819
|
-
deprecate :Operator, :none, 2024,
|
3820
|
-
deprecate :Operator=, :none, 2024,
|
3819
|
+
deprecate :Operator, :none, 2024, 10
|
3820
|
+
deprecate :Operator=, :none, 2024, 10
|
3821
3821
|
|
3822
3822
|
def initialize(agent=nil, limit=nil, filters=nil, offset=nil, operator=nil)
|
3823
3823
|
@Agent = agent
|
@@ -4121,10 +4121,10 @@ module TencentCloud
|
|
4121
4121
|
|
4122
4122
|
attr_accessor :Agent, :TaskId, :Operator, :Organization
|
4123
4123
|
extend Gem::Deprecate
|
4124
|
-
deprecate :Operator, :none, 2024,
|
4125
|
-
deprecate :Operator=, :none, 2024,
|
4126
|
-
deprecate :Organization, :none, 2024,
|
4127
|
-
deprecate :Organization=, :none, 2024,
|
4124
|
+
deprecate :Operator, :none, 2024, 10
|
4125
|
+
deprecate :Operator=, :none, 2024, 10
|
4126
|
+
deprecate :Organization, :none, 2024, 10
|
4127
|
+
deprecate :Organization=, :none, 2024, 10
|
4128
4128
|
|
4129
4129
|
def initialize(agent=nil, taskid=nil, operator=nil, organization=nil)
|
4130
4130
|
@Agent = agent
|
@@ -4181,8 +4181,8 @@ module TencentCloud
|
|
4181
4181
|
|
4182
4182
|
attr_accessor :TaskId, :TaskStatus, :TaskMessage, :ResourceId, :PreviewUrl, :RequestId
|
4183
4183
|
extend Gem::Deprecate
|
4184
|
-
deprecate :PreviewUrl, :none, 2024,
|
4185
|
-
deprecate :PreviewUrl=, :none, 2024,
|
4184
|
+
deprecate :PreviewUrl, :none, 2024, 10
|
4185
|
+
deprecate :PreviewUrl=, :none, 2024, 10
|
4186
4186
|
|
4187
4187
|
def initialize(taskid=nil, taskstatus=nil, taskmessage=nil, resourceid=nil, previewurl=nil, requestid=nil)
|
4188
4188
|
@TaskId = taskid
|
@@ -4304,10 +4304,18 @@ module TencentCloud
|
|
4304
4304
|
# <li>**"AuthorizationLegalIdentity"**: 法人直接认证</li>
|
4305
4305
|
# </ul>
|
4306
4306
|
# @type AuthorizationType: String
|
4307
|
+
# @param ActiveStatus: 子企业激活状态。值如下:
|
4308
|
+
# <ul>
|
4309
|
+
# <li>**0**: 未激活</li>
|
4310
|
+
# <li>**1**: 已激活</li>
|
4311
|
+
# </ul>
|
4312
|
+
# @type ActiveStatus: Integer
|
4313
|
+
# @param LicenseExpireTime: 账号过期时间,时间戳
|
4314
|
+
# @type LicenseExpireTime: Integer
|
4307
4315
|
|
4308
|
-
attr_accessor :OrganizationId, :OrganizationOpenId, :OrganizationName, :UnifiedSocialCreditCode, :LegalName, :LegalOpenId, :AdminName, :AdminOpenId, :AdminMobile, :AuthorizationStatus, :AuthorizationType
|
4316
|
+
attr_accessor :OrganizationId, :OrganizationOpenId, :OrganizationName, :UnifiedSocialCreditCode, :LegalName, :LegalOpenId, :AdminName, :AdminOpenId, :AdminMobile, :AuthorizationStatus, :AuthorizationType, :ActiveStatus, :LicenseExpireTime
|
4309
4317
|
|
4310
|
-
def initialize(organizationid=nil, organizationopenid=nil, organizationname=nil, unifiedsocialcreditcode=nil, legalname=nil, legalopenid=nil, adminname=nil, adminopenid=nil, adminmobile=nil, authorizationstatus=nil, authorizationtype=nil)
|
4318
|
+
def initialize(organizationid=nil, organizationopenid=nil, organizationname=nil, unifiedsocialcreditcode=nil, legalname=nil, legalopenid=nil, adminname=nil, adminopenid=nil, adminmobile=nil, authorizationstatus=nil, authorizationtype=nil, activestatus=nil, licenseexpiretime=nil)
|
4311
4319
|
@OrganizationId = organizationid
|
4312
4320
|
@OrganizationOpenId = organizationopenid
|
4313
4321
|
@OrganizationName = organizationname
|
@@ -4319,6 +4327,8 @@ module TencentCloud
|
|
4319
4327
|
@AdminMobile = adminmobile
|
4320
4328
|
@AuthorizationStatus = authorizationstatus
|
4321
4329
|
@AuthorizationType = authorizationtype
|
4330
|
+
@ActiveStatus = activestatus
|
4331
|
+
@LicenseExpireTime = licenseexpiretime
|
4322
4332
|
end
|
4323
4333
|
|
4324
4334
|
def deserialize(params)
|
@@ -4333,6 +4343,8 @@ module TencentCloud
|
|
4333
4343
|
@AdminMobile = params['AdminMobile']
|
4334
4344
|
@AuthorizationStatus = params['AuthorizationStatus']
|
4335
4345
|
@AuthorizationType = params['AuthorizationType']
|
4346
|
+
@ActiveStatus = params['ActiveStatus']
|
4347
|
+
@LicenseExpireTime = params['LicenseExpireTime']
|
4336
4348
|
end
|
4337
4349
|
end
|
4338
4350
|
|
@@ -4453,8 +4465,8 @@ module TencentCloud
|
|
4453
4465
|
|
4454
4466
|
attr_accessor :Agent, :Status, :SealId, :Reason, :Operator
|
4455
4467
|
extend Gem::Deprecate
|
4456
|
-
deprecate :Operator, :none, 2024,
|
4457
|
-
deprecate :Operator=, :none, 2024,
|
4468
|
+
deprecate :Operator, :none, 2024, 10
|
4469
|
+
deprecate :Operator=, :none, 2024, 10
|
4458
4470
|
|
4459
4471
|
def initialize(agent=nil, status=nil, sealid=nil, reason=nil, operator=nil)
|
4460
4472
|
@Agent = agent
|
@@ -4514,8 +4526,8 @@ module TencentCloud
|
|
4514
4526
|
|
4515
4527
|
attr_accessor :FlowId, :Agent, :Operator
|
4516
4528
|
extend Gem::Deprecate
|
4517
|
-
deprecate :Operator, :none, 2024,
|
4518
|
-
deprecate :Operator=, :none, 2024,
|
4529
|
+
deprecate :Operator, :none, 2024, 10
|
4530
|
+
deprecate :Operator=, :none, 2024, 10
|
4519
4531
|
|
4520
4532
|
def initialize(flowid=nil, agent=nil, operator=nil)
|
4521
4533
|
@FlowId = flowid
|
@@ -5127,10 +5139,7 @@ module TencentCloud
|
|
5127
5139
|
# 此接口下面信息必填。
|
5128
5140
|
# <ul>
|
5129
5141
|
# <li>渠道应用标识: Agent.AppId</li>
|
5130
|
-
# <li>第三方平台子客企业标识: Agent.ProxyOrganizationOpenId</li>
|
5131
|
-
# <li>第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId</li>
|
5132
5142
|
# </ul>
|
5133
|
-
# 第三方平台子客企业和员工必须已经经过实名认证
|
5134
5143
|
# @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
|
5135
5144
|
# @param RegistrationOrganizations: 当前应用下子企业的组织机构注册信息。最多支持查询10子企业。
|
5136
5145
|
# @type RegistrationOrganizations: Array
|
@@ -5223,8 +5232,8 @@ module TencentCloud
|
|
5223
5232
|
|
5224
5233
|
attr_accessor :Agent, :FlowId, :Operator, :ReportType
|
5225
5234
|
extend Gem::Deprecate
|
5226
|
-
deprecate :Operator, :none, 2024,
|
5227
|
-
deprecate :Operator=, :none, 2024,
|
5235
|
+
deprecate :Operator, :none, 2024, 10
|
5236
|
+
deprecate :Operator=, :none, 2024, 10
|
5228
5237
|
|
5229
5238
|
def initialize(agent=nil, flowid=nil, operator=nil, reporttype=nil)
|
5230
5239
|
@Agent = agent
|
@@ -5346,6 +5355,60 @@ module TencentCloud
|
|
5346
5355
|
end
|
5347
5356
|
end
|
5348
5357
|
|
5358
|
+
# CreateChannelSubOrganizationActive请求参数结构体
|
5359
|
+
class CreateChannelSubOrganizationActiveRequest < TencentCloud::Common::AbstractModel
|
5360
|
+
# @param Agent: 关于渠道应用的相关信息,包括渠道应用标识、第三方平台子客企业标识及第三方平台子客企业中的员工标识等内容,您可以参阅开发者中心所提供的 Agent 结构体以获取详细定义。
|
5361
|
+
|
5362
|
+
# 此接口下面信息必填。
|
5363
|
+
# <ul>
|
5364
|
+
# <li>渠道应用标识: Agent.AppId</li>
|
5365
|
+
# <li>第三方平台子客企业标识: Agent.ProxyOrganizationOpenId</li>
|
5366
|
+
# <li>第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId</li>
|
5367
|
+
# </ul>
|
5368
|
+
# 第三方平台子客企业和员工必须已经经过实名认证
|
5369
|
+
# @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
|
5370
|
+
# @param SubOrganizationOpenIds: 要进行激活或者续期的子客企业OrganizationOpenId列表,请确保所有列出的子客企业均已完成认证。
|
5371
|
+
# @type SubOrganizationOpenIds: Array
|
5372
|
+
# @param Renew: 操作类型,可以选择如下:
|
5373
|
+
|
5374
|
+
# **false**:(默认)激活子客企业
|
5375
|
+
# **true**:续期子客企业
|
5376
|
+
# @type Renew: Boolean
|
5377
|
+
|
5378
|
+
attr_accessor :Agent, :SubOrganizationOpenIds, :Renew
|
5379
|
+
|
5380
|
+
def initialize(agent=nil, suborganizationopenids=nil, renew=nil)
|
5381
|
+
@Agent = agent
|
5382
|
+
@SubOrganizationOpenIds = suborganizationopenids
|
5383
|
+
@Renew = renew
|
5384
|
+
end
|
5385
|
+
|
5386
|
+
def deserialize(params)
|
5387
|
+
unless params['Agent'].nil?
|
5388
|
+
@Agent = Agent.new
|
5389
|
+
@Agent.deserialize(params['Agent'])
|
5390
|
+
end
|
5391
|
+
@SubOrganizationOpenIds = params['SubOrganizationOpenIds']
|
5392
|
+
@Renew = params['Renew']
|
5393
|
+
end
|
5394
|
+
end
|
5395
|
+
|
5396
|
+
# CreateChannelSubOrganizationActive返回参数结构体
|
5397
|
+
class CreateChannelSubOrganizationActiveResponse < TencentCloud::Common::AbstractModel
|
5398
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5399
|
+
# @type RequestId: String
|
5400
|
+
|
5401
|
+
attr_accessor :RequestId
|
5402
|
+
|
5403
|
+
def initialize(requestid=nil)
|
5404
|
+
@RequestId = requestid
|
5405
|
+
end
|
5406
|
+
|
5407
|
+
def deserialize(params)
|
5408
|
+
@RequestId = params['RequestId']
|
5409
|
+
end
|
5410
|
+
end
|
5411
|
+
|
5349
5412
|
# CreateConsoleLoginUrl请求参数结构体
|
5350
5413
|
class CreateConsoleLoginUrlRequest < TencentCloud::Common::AbstractModel
|
5351
5414
|
# @param Agent: 关于渠道应用的相关信息,包括渠道应用标识、第三方平台子客企业标识及第三方平台子客企业中的员工标识等内容
|
@@ -5427,17 +5490,19 @@ module TencentCloud
|
|
5427
5490
|
# 注意:`如果已同步,这里非空会更新同步的经办人身份证号,暂时只支持居民身份证类型`。
|
5428
5491
|
# @type ProxyOperatorIdCardNumber: String
|
5429
5492
|
# @param AutoJumpUrl: 认证完成跳转链接。
|
5430
|
-
#
|
5493
|
+
# 注意:`此功能仅在Endpoint参数设置成 H5 或 PC时才有效`。
|
5431
5494
|
# @type AutoJumpUrl: String
|
5432
5495
|
# @param TopNavigationStatus: 是否展示头顶导航栏 <ul><li> **ENABLE** : (默认)进入web控制台展示头顶导航栏</li> <li> **DISABLE** : 进入web控制台不展示头顶导航栏</li></ul> 注:该参数**仅在企业和员工激活完成,登录控制台场景才生效**。
|
5496
|
+
|
5497
|
+
# <a href="https://qcloudimg.tencent-cloud.cn/raw/dd54f333140c711cf6a88e3801bcd178.png" target="_blank">点击查看头顶导航栏位置</a>
|
5433
5498
|
# @type TopNavigationStatus: String
|
5434
5499
|
# @param AutoActive: 是否自动激活子客
|
5435
5500
|
# @type AutoActive: Boolean
|
5436
5501
|
|
5437
5502
|
attr_accessor :Agent, :ProxyOrganizationName, :UniformSocialCreditCode, :ProxyOperatorName, :ProxyOperatorMobile, :Module, :ModuleId, :MenuStatus, :Endpoint, :AutoJumpBackEvent, :AuthorizationTypes, :Operator, :ProxyOperatorIdCardNumber, :AutoJumpUrl, :TopNavigationStatus, :AutoActive
|
5438
5503
|
extend Gem::Deprecate
|
5439
|
-
deprecate :Operator, :none, 2024,
|
5440
|
-
deprecate :Operator=, :none, 2024,
|
5504
|
+
deprecate :Operator, :none, 2024, 10
|
5505
|
+
deprecate :Operator=, :none, 2024, 10
|
5441
5506
|
|
5442
5507
|
def initialize(agent=nil, proxyorganizationname=nil, uniformsocialcreditcode=nil, proxyoperatorname=nil, proxyoperatormobile=nil, _module=nil, moduleid=nil, menustatus=nil, endpoint=nil, autojumpbackevent=nil, authorizationtypes=nil, operator=nil, proxyoperatoridcardnumber=nil, autojumpurl=nil, topnavigationstatus=nil, autoactive=nil)
|
5443
5508
|
@Agent = agent
|
@@ -5792,8 +5857,8 @@ module TencentCloud
|
|
5792
5857
|
|
5793
5858
|
attr_accessor :Agent, :FlowInfos, :NeedPreview, :PreviewType, :Operator
|
5794
5859
|
extend Gem::Deprecate
|
5795
|
-
deprecate :Operator, :none, 2024,
|
5796
|
-
deprecate :Operator=, :none, 2024,
|
5860
|
+
deprecate :Operator, :none, 2024, 10
|
5861
|
+
deprecate :Operator=, :none, 2024, 10
|
5797
5862
|
|
5798
5863
|
def initialize(agent=nil, flowinfos=nil, needpreview=nil, previewtype=nil, operator=nil)
|
5799
5864
|
@Agent = agent
|
@@ -5906,10 +5971,10 @@ module TencentCloud
|
|
5906
5971
|
|
5907
5972
|
attr_accessor :Agent, :Operator, :Organization
|
5908
5973
|
extend Gem::Deprecate
|
5909
|
-
deprecate :Operator, :none, 2024,
|
5910
|
-
deprecate :Operator=, :none, 2024,
|
5911
|
-
deprecate :Organization, :none, 2024,
|
5912
|
-
deprecate :Organization=, :none, 2024,
|
5974
|
+
deprecate :Operator, :none, 2024, 10
|
5975
|
+
deprecate :Operator=, :none, 2024, 10
|
5976
|
+
deprecate :Organization, :none, 2024, 10
|
5977
|
+
deprecate :Organization=, :none, 2024, 10
|
5913
5978
|
|
5914
5979
|
def initialize(agent=nil, operator=nil, organization=nil)
|
5915
5980
|
@Agent = agent
|
@@ -6173,8 +6238,8 @@ module TencentCloud
|
|
6173
6238
|
|
6174
6239
|
attr_accessor :Agent, :SealName, :SealImage, :Operator, :GenerateSource, :SealType, :SealHorizontalText, :SealStyle, :SealSize, :TaxIdentifyCode
|
6175
6240
|
extend Gem::Deprecate
|
6176
|
-
deprecate :Operator, :none, 2024,
|
6177
|
-
deprecate :Operator=, :none, 2024,
|
6241
|
+
deprecate :Operator, :none, 2024, 10
|
6242
|
+
deprecate :Operator=, :none, 2024, 10
|
6178
6243
|
|
6179
6244
|
def initialize(agent=nil, sealname=nil, sealimage=nil, operator=nil, generatesource=nil, sealtype=nil, sealhorizontaltext=nil, sealstyle=nil, sealsize=nil, taxidentifycode=nil)
|
6180
6245
|
@Agent = agent
|
@@ -6333,8 +6398,8 @@ module TencentCloud
|
|
6333
6398
|
|
6334
6399
|
attr_accessor :Agent, :FlowIds, :FlowGroupId, :Endpoint, :GenerateType, :OrganizationName, :Name, :Mobile, :IdCardType, :IdCardNumber, :OrganizationOpenId, :OpenId, :AutoJumpBack, :JumpUrl, :Operator, :Hides, :RecipientIds, :FlowGroupUrlInfo
|
6335
6400
|
extend Gem::Deprecate
|
6336
|
-
deprecate :Operator, :none, 2024,
|
6337
|
-
deprecate :Operator=, :none, 2024,
|
6401
|
+
deprecate :Operator, :none, 2024, 10
|
6402
|
+
deprecate :Operator=, :none, 2024, 10
|
6338
6403
|
|
6339
6404
|
def initialize(agent=nil, flowids=nil, flowgroupid=nil, endpoint=nil, generatetype=nil, organizationname=nil, name=nil, mobile=nil, idcardtype=nil, idcardnumber=nil, organizationopenid=nil, openid=nil, autojumpback=nil, jumpurl=nil, operator=nil, hides=nil, recipientids=nil, flowgroupurlinfo=nil)
|
6340
6405
|
@Agent = agent
|
@@ -6448,10 +6513,7 @@ module TencentCloud
|
|
6448
6513
|
# 此接口下面信息必填。
|
6449
6514
|
# <ul>
|
6450
6515
|
# <li>渠道应用标识: Agent.AppId</li>
|
6451
|
-
# <li>第三方平台子客企业标识: Agent.ProxyOrganizationOpenId</li>
|
6452
|
-
# <li>第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId</li>
|
6453
6516
|
# </ul>
|
6454
|
-
# 第三方平台子客企业和员工必须已经经过实名认证
|
6455
6517
|
# @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
|
6456
6518
|
# @param TaskId: 通过接口<a href="https://qian.tencent.com/developers/partnerApis/accounts/CreateBatchOrganizationRegistrationTasks" target="_blank">提交子企业批量认证链接创建任务</a>调用得到的任务ID。
|
6457
6519
|
# @type TaskId: String
|
@@ -6592,8 +6654,8 @@ module TencentCloud
|
|
6592
6654
|
|
6593
6655
|
attr_accessor :Agent, :ReportId, :Operator, :ReportType
|
6594
6656
|
extend Gem::Deprecate
|
6595
|
-
deprecate :Operator, :none, 2024,
|
6596
|
-
deprecate :Operator=, :none, 2024,
|
6657
|
+
deprecate :Operator, :none, 2024, 10
|
6658
|
+
deprecate :Operator=, :none, 2024, 10
|
6597
6659
|
|
6598
6660
|
def initialize(agent=nil, reportid=nil, operator=nil, reporttype=nil)
|
6599
6661
|
@Agent = agent
|
@@ -6939,8 +7001,8 @@ module TencentCloud
|
|
6939
7001
|
|
6940
7002
|
attr_accessor :Agent, :FlowIds, :FlowGroupId, :Operator
|
6941
7003
|
extend Gem::Deprecate
|
6942
|
-
deprecate :Operator, :none, 2024,
|
6943
|
-
deprecate :Operator=, :none, 2024,
|
7004
|
+
deprecate :Operator, :none, 2024, 10
|
7005
|
+
deprecate :Operator=, :none, 2024, 10
|
6944
7006
|
|
6945
7007
|
def initialize(agent=nil, flowids=nil, flowgroupid=nil, operator=nil)
|
6946
7008
|
@Agent = agent
|
@@ -7029,8 +7091,8 @@ module TencentCloud
|
|
7029
7091
|
|
7030
7092
|
attr_accessor :Agent, :FlowIds, :Operator
|
7031
7093
|
extend Gem::Deprecate
|
7032
|
-
deprecate :Operator, :none, 2024,
|
7033
|
-
deprecate :Operator=, :none, 2024,
|
7094
|
+
deprecate :Operator, :none, 2024, 10
|
7095
|
+
deprecate :Operator=, :none, 2024, 10
|
7034
7096
|
|
7035
7097
|
def initialize(agent=nil, flowids=nil, operator=nil)
|
7036
7098
|
@Agent = agent
|
@@ -7155,8 +7217,8 @@ module TencentCloud
|
|
7155
7217
|
|
7156
7218
|
attr_accessor :Agent, :TemplateId, :ContentType, :TemplateIds, :Limit, :Offset, :TemplateName, :ChannelTemplateId, :QueryAllComponents, :WithPreviewUrl, :WithPdfUrl, :Operator
|
7157
7219
|
extend Gem::Deprecate
|
7158
|
-
deprecate :Operator, :none, 2024,
|
7159
|
-
deprecate :Operator=, :none, 2024,
|
7220
|
+
deprecate :Operator, :none, 2024, 10
|
7221
|
+
deprecate :Operator=, :none, 2024, 10
|
7160
7222
|
|
7161
7223
|
def initialize(agent=nil, templateid=nil, contenttype=nil, templateids=nil, limit=nil, offset=nil, templatename=nil, channeltemplateid=nil, queryallcomponents=nil, withpreviewurl=nil, withpdfurl=nil, operator=nil)
|
7162
7224
|
@Agent = agent
|
@@ -7268,8 +7330,8 @@ module TencentCloud
|
|
7268
7330
|
|
7269
7331
|
attr_accessor :Agent, :StartDate, :EndDate, :NeedAggregate, :Limit, :Offset, :Operator
|
7270
7332
|
extend Gem::Deprecate
|
7271
|
-
deprecate :Operator, :none, 2024,
|
7272
|
-
deprecate :Operator=, :none, 2024,
|
7333
|
+
deprecate :Operator, :none, 2024, 10
|
7334
|
+
deprecate :Operator=, :none, 2024, 10
|
7273
7335
|
|
7274
7336
|
def initialize(agent=nil, startdate=nil, enddate=nil, needaggregate=nil, limit=nil, offset=nil, operator=nil)
|
7275
7337
|
@Agent = agent
|
@@ -7868,8 +7930,8 @@ module TencentCloud
|
|
7868
7930
|
|
7869
7931
|
attr_accessor :Name, :IdCardType, :IdCardNumber, :Mobile, :OrganizationName, :NotChannelOrganization, :OpenId, :OrganizationOpenId, :ApproverType, :RecipientId, :Deadline, :CallbackUrl, :SignComponents, :ComponentLimitType, :PreReadTime, :JumpUrl, :ApproverOption, :ApproverNeedSignReview, :ApproverVerifyTypes, :ApproverSignTypes, :SignId, :NotifyType, :AddSignComponentsLimits, :ApproverRoleName, :SignTypeSelector, :Components, :Intention
|
7870
7932
|
extend Gem::Deprecate
|
7871
|
-
deprecate :CallbackUrl, :none, 2024,
|
7872
|
-
deprecate :CallbackUrl=, :none, 2024,
|
7933
|
+
deprecate :CallbackUrl, :none, 2024, 10
|
7934
|
+
deprecate :CallbackUrl=, :none, 2024, 10
|
7873
7935
|
|
7874
7936
|
def initialize(name=nil, idcardtype=nil, idcardnumber=nil, mobile=nil, organizationname=nil, notchannelorganization=nil, openid=nil, organizationopenid=nil, approvertype=nil, recipientid=nil, deadline=nil, callbackurl=nil, signcomponents=nil, componentlimittype=nil, prereadtime=nil, jumpurl=nil, approveroption=nil, approverneedsignreview=nil, approververifytypes=nil, approversigntypes=nil, signid=nil, notifytype=nil, addsigncomponentslimits=nil, approverrolename=nil, signtypeselector=nil, components=nil, intention=nil)
|
7875
7937
|
@Name = name
|
@@ -8187,8 +8249,8 @@ module TencentCloud
|
|
8187
8249
|
|
8188
8250
|
attr_accessor :FileIds, :FlowName, :FlowApprovers, :Deadline, :FlowDescription, :FlowType, :CallbackUrl, :CustomerData, :Unordered, :Components, :CustomShowMap, :NeedSignReview, :FlowDisplayType
|
8189
8251
|
extend Gem::Deprecate
|
8190
|
-
deprecate :CallbackUrl, :none, 2024,
|
8191
|
-
deprecate :CallbackUrl=, :none, 2024,
|
8252
|
+
deprecate :CallbackUrl, :none, 2024, 10
|
8253
|
+
deprecate :CallbackUrl=, :none, 2024, 10
|
8192
8254
|
|
8193
8255
|
def initialize(fileids=nil, flowname=nil, flowapprovers=nil, deadline=nil, flowdescription=nil, flowtype=nil, callbackurl=nil, customerdata=nil, unordered=nil, components=nil, customshowmap=nil, needsignreview=nil, flowdisplaytype=nil)
|
8194
8256
|
@FileIds = fileids
|
@@ -8410,8 +8472,8 @@ module TencentCloud
|
|
8410
8472
|
|
8411
8473
|
attr_accessor :FlowName, :Deadline, :TemplateId, :FlowApprovers, :FormFields, :CallbackUrl, :FlowType, :FlowDescription, :CustomerData, :CustomShowMap, :CcInfos, :NeedSignReview, :CcNotifyType, :AutoSignScene, :FlowDisplayType
|
8412
8474
|
extend Gem::Deprecate
|
8413
|
-
deprecate :CallbackUrl, :none, 2024,
|
8414
|
-
deprecate :CallbackUrl=, :none, 2024,
|
8475
|
+
deprecate :CallbackUrl, :none, 2024, 10
|
8476
|
+
deprecate :CallbackUrl=, :none, 2024, 10
|
8415
8477
|
|
8416
8478
|
def initialize(flowname=nil, deadline=nil, templateid=nil, flowapprovers=nil, formfields=nil, callbackurl=nil, flowtype=nil, flowdescription=nil, customerdata=nil, customshowmap=nil, ccinfos=nil, needsignreview=nil, ccnotifytype=nil, autosignscene=nil, flowdisplaytype=nil)
|
8417
8479
|
@FlowName = flowname
|
@@ -8802,8 +8864,8 @@ module TencentCloud
|
|
8802
8864
|
|
8803
8865
|
attr_accessor :Agent, :DownLoadFlows, :Operator
|
8804
8866
|
extend Gem::Deprecate
|
8805
|
-
deprecate :Operator, :none, 2024,
|
8806
|
-
deprecate :Operator=, :none, 2024,
|
8867
|
+
deprecate :Operator, :none, 2024, 10
|
8868
|
+
deprecate :Operator=, :none, 2024, 10
|
8807
8869
|
|
8808
8870
|
def initialize(agent=nil, downloadflows=nil, operator=nil)
|
8809
8871
|
@Agent = agent
|
@@ -9358,8 +9420,8 @@ module TencentCloud
|
|
9358
9420
|
|
9359
9421
|
attr_accessor :Agent, :OperateType, :TemplateId, :ProxyOrganizationOpenIds, :AuthTag, :Available, :Operator
|
9360
9422
|
extend Gem::Deprecate
|
9361
|
-
deprecate :Operator, :none, 2024,
|
9362
|
-
deprecate :Operator=, :none, 2024,
|
9423
|
+
deprecate :Operator, :none, 2024, 10
|
9424
|
+
deprecate :Operator=, :none, 2024, 10
|
9363
9425
|
|
9364
9426
|
def initialize(agent=nil, operatetype=nil, templateid=nil, proxyorganizationopenids=nil, authtag=nil, available=nil, operator=nil)
|
9365
9427
|
@Agent = agent
|
@@ -9487,10 +9549,10 @@ module TencentCloud
|
|
9487
9549
|
|
9488
9550
|
attr_accessor :OrganizationOpenId, :OrganizationId, :Channel, :ClientIp, :ProxyIp
|
9489
9551
|
extend Gem::Deprecate
|
9490
|
-
deprecate :ClientIp, :none, 2024,
|
9491
|
-
deprecate :ClientIp=, :none, 2024,
|
9492
|
-
deprecate :ProxyIp, :none, 2024,
|
9493
|
-
deprecate :ProxyIp=, :none, 2024,
|
9552
|
+
deprecate :ClientIp, :none, 2024, 10
|
9553
|
+
deprecate :ClientIp=, :none, 2024, 10
|
9554
|
+
deprecate :ProxyIp, :none, 2024, 10
|
9555
|
+
deprecate :ProxyIp=, :none, 2024, 10
|
9494
9556
|
|
9495
9557
|
def initialize(organizationopenid=nil, organizationid=nil, channel=nil, clientip=nil, proxyip=nil)
|
9496
9558
|
@OrganizationOpenId = organizationopenid
|
@@ -9719,8 +9781,8 @@ module TencentCloud
|
|
9719
9781
|
|
9720
9782
|
attr_accessor :Agent, :FlowInfos, :JumpUrl, :Operator
|
9721
9783
|
extend Gem::Deprecate
|
9722
|
-
deprecate :Operator, :none, 2024,
|
9723
|
-
deprecate :Operator=, :none, 2024,
|
9784
|
+
deprecate :Operator, :none, 2024, 10
|
9785
|
+
deprecate :Operator=, :none, 2024, 10
|
9724
9786
|
|
9725
9787
|
def initialize(agent=nil, flowinfos=nil, jumpurl=nil, operator=nil)
|
9726
9788
|
@Agent = agent
|
@@ -10302,8 +10364,8 @@ module TencentCloud
|
|
10302
10364
|
|
10303
10365
|
attr_accessor :SignUrl, :Deadline, :SignOrder, :SignId, :CustomUserId, :Name, :Mobile, :OrganizationName, :ApproverType, :IdCardNumber, :FlowId, :OpenId, :FlowGroupId, :SignQrcodeUrl
|
10304
10366
|
extend Gem::Deprecate
|
10305
|
-
deprecate :CustomUserId, :none, 2024,
|
10306
|
-
deprecate :CustomUserId=, :none, 2024,
|
10367
|
+
deprecate :CustomUserId, :none, 2024, 10
|
10368
|
+
deprecate :CustomUserId=, :none, 2024, 10
|
10307
10369
|
|
10308
10370
|
def initialize(signurl=nil, deadline=nil, signorder=nil, signid=nil, customuserid=nil, name=nil, mobile=nil, organizationname=nil, approvertype=nil, idcardnumber=nil, flowid=nil, openid=nil, flowgroupid=nil, signqrcodeurl=nil)
|
10309
10371
|
@SignUrl = signurl
|
@@ -10478,8 +10540,8 @@ module TencentCloud
|
|
10478
10540
|
|
10479
10541
|
attr_accessor :Agent, :OperatorType, :ProxyOrganizationOperators, :Operator
|
10480
10542
|
extend Gem::Deprecate
|
10481
|
-
deprecate :Operator, :none, 2024,
|
10482
|
-
deprecate :Operator=, :none, 2024,
|
10543
|
+
deprecate :Operator, :none, 2024, 10
|
10544
|
+
deprecate :Operator=, :none, 2024, 10
|
10483
10545
|
|
10484
10546
|
def initialize(agent=nil, operatortype=nil, proxyorganizationoperators=nil, operator=nil)
|
10485
10547
|
@Agent = agent
|
@@ -10580,8 +10642,8 @@ module TencentCloud
|
|
10580
10642
|
|
10581
10643
|
attr_accessor :Agent, :ProxyOrganizationName, :BusinessLicense, :UniformSocialCreditCode, :ProxyLegalName, :Operator, :ProxyLegalIdCardType, :ProxyLegalIdCardNumber, :ProxyAddress
|
10582
10644
|
extend Gem::Deprecate
|
10583
|
-
deprecate :Operator, :none, 2024,
|
10584
|
-
deprecate :Operator=, :none, 2024,
|
10645
|
+
deprecate :Operator, :none, 2024, 10
|
10646
|
+
deprecate :Operator=, :none, 2024, 10
|
10585
10647
|
|
10586
10648
|
def initialize(agent=nil, proxyorganizationname=nil, businesslicense=nil, uniformsocialcreditcode=nil, proxylegalname=nil, operator=nil, proxylegalidcardtype=nil, proxylegalidcardnumber=nil, proxyaddress=nil)
|
10587
10649
|
@Agent = agent
|
@@ -10713,8 +10775,8 @@ module TencentCloud
|
|
10713
10775
|
|
10714
10776
|
attr_accessor :TemplateId, :TemplateName, :Description, :Components, :Recipients, :SignComponents, :TemplateType, :IsPromoter, :Creator, :CreatedOn, :PreviewUrl, :PdfUrl, :ChannelTemplateId, :ChannelTemplateName, :ChannelAutoSave, :TemplateVersion, :Available
|
10715
10777
|
extend Gem::Deprecate
|
10716
|
-
deprecate :IsPromoter, :none, 2024,
|
10717
|
-
deprecate :IsPromoter=, :none, 2024,
|
10778
|
+
deprecate :IsPromoter, :none, 2024, 10
|
10779
|
+
deprecate :IsPromoter=, :none, 2024, 10
|
10718
10780
|
|
10719
10781
|
def initialize(templateid=nil, templatename=nil, description=nil, components=nil, recipients=nil, signcomponents=nil, templatetype=nil, ispromoter=nil, creator=nil, createdon=nil, previewurl=nil, pdfurl=nil, channeltemplateid=nil, channeltemplatename=nil, channelautosave=nil, templateversion=nil, available=nil)
|
10720
10782
|
@TemplateId = templateid
|
@@ -10821,8 +10883,8 @@ module TencentCloud
|
|
10821
10883
|
|
10822
10884
|
attr_accessor :Agent, :BusinessType, :FileInfos, :Operator
|
10823
10885
|
extend Gem::Deprecate
|
10824
|
-
deprecate :Operator, :none, 2024,
|
10825
|
-
deprecate :Operator=, :none, 2024,
|
10886
|
+
deprecate :Operator, :none, 2024, 10
|
10887
|
+
deprecate :Operator=, :none, 2024, 10
|
10826
10888
|
|
10827
10889
|
def initialize(agent=nil, businesstype=nil, fileinfos=nil, operator=nil)
|
10828
10890
|
@Agent = agent
|
@@ -10945,14 +11007,14 @@ module TencentCloud
|
|
10945
11007
|
|
10946
11008
|
attr_accessor :OpenId, :Channel, :CustomUserId, :ClientIp, :ProxyIp
|
10947
11009
|
extend Gem::Deprecate
|
10948
|
-
deprecate :Channel, :none, 2024,
|
10949
|
-
deprecate :Channel=, :none, 2024,
|
10950
|
-
deprecate :CustomUserId, :none, 2024,
|
10951
|
-
deprecate :CustomUserId=, :none, 2024,
|
10952
|
-
deprecate :ClientIp, :none, 2024,
|
10953
|
-
deprecate :ClientIp=, :none, 2024,
|
10954
|
-
deprecate :ProxyIp, :none, 2024,
|
10955
|
-
deprecate :ProxyIp=, :none, 2024,
|
11010
|
+
deprecate :Channel, :none, 2024, 10
|
11011
|
+
deprecate :Channel=, :none, 2024, 10
|
11012
|
+
deprecate :CustomUserId, :none, 2024, 10
|
11013
|
+
deprecate :CustomUserId=, :none, 2024, 10
|
11014
|
+
deprecate :ClientIp, :none, 2024, 10
|
11015
|
+
deprecate :ClientIp=, :none, 2024, 10
|
11016
|
+
deprecate :ProxyIp, :none, 2024, 10
|
11017
|
+
deprecate :ProxyIp=, :none, 2024, 10
|
10956
11018
|
|
10957
11019
|
def initialize(openid=nil, channel=nil, customuserid=nil, clientip=nil, proxyip=nil)
|
10958
11020
|
@OpenId = openid
|
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.920
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-09
|
11
|
+
date: 2024-10-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|