tencentcloud-sdk-essbasic 3.0.491 → 3.0.492

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4a008ee54b261dc7ecea1754487dbebc08b3acce
4
- data.tar.gz: e200201ff57040148ead6f74078fd25fd36f5eba
3
+ metadata.gz: e3600653178db0545dedcca5b067f3a09db2b401
4
+ data.tar.gz: 373499cfcbc6adeae37d8d55c8655d0432311860
5
5
  SHA512:
6
- metadata.gz: a454801a82b63ad6aa791a3898bef6e2e21181ec6c135cb8d13ea35e1e06736364368647f54fb433dcd101a9bb100a767ab378bc6ba038968e5e4f6bf74f4735
7
- data.tar.gz: 0a784d4128236e02392669257be9279b81248cd7cfa3bf9d9734d52a61ab29cb5e016b43a3a81184720a4f6bd6094255b3c6424baf8183e6679368449fe4077e
6
+ metadata.gz: 8be85454ca412e1b7621ead8e946e6ffce375463e87071fc789588b966589e89249ccf5f0b813076241dfde026a957f8b723f498bac34101449f368a44caf490
7
+ data.tar.gz: 71fb107c10fe059a85b1c23de8a765c57d809691c8e9d106eb8619f3c0edd4b2fe66f9eb5da85cb80875c65720999e18bec9f43b32dccc68c24b29e1d65ae48b
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.491
1
+ 3.0.492
@@ -571,6 +571,30 @@ module TencentCloud
571
571
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
572
572
  end
573
573
 
574
+ # 查询企业扩展服务授权信息,企业经办人需要时企业超管或者法人
575
+
576
+ # @param request: Request instance for DescribeExtendedServiceAuthInfo.
577
+ # @type request: :class:`Tencentcloud::essbasic::V20210526::DescribeExtendedServiceAuthInfoRequest`
578
+ # @rtype: :class:`Tencentcloud::essbasic::V20210526::DescribeExtendedServiceAuthInfoResponse`
579
+ def DescribeExtendedServiceAuthInfo(request)
580
+ body = send_request('DescribeExtendedServiceAuthInfo', request.serialize)
581
+ response = JSON.parse(body)
582
+ if response['Response'].key?('Error') == false
583
+ model = DescribeExtendedServiceAuthInfoResponse.new
584
+ model.deserialize(response['Response'])
585
+ model
586
+ else
587
+ code = response['Response']['Error']['Code']
588
+ message = response['Response']['Error']['Message']
589
+ reqid = response['Response']['RequestId']
590
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
591
+ end
592
+ rescue TencentCloud::Common::TencentCloudSDKException => e
593
+ raise e
594
+ rescue StandardError => e
595
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
596
+ end
597
+
574
598
  # 此接口(DescribeFlowDetailInfo)用于查询合同(签署流程)的详细信息。
575
599
 
576
600
  # @param request: Request instance for DescribeFlowDetailInfo.
@@ -694,6 +718,30 @@ module TencentCloud
694
718
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
695
719
  end
696
720
 
721
+ # 修改(操作)企业扩展服务 ,企业经办人需要时企业超管或者法人
722
+
723
+ # @param request: Request instance for ModifyExtendedService.
724
+ # @type request: :class:`Tencentcloud::essbasic::V20210526::ModifyExtendedServiceRequest`
725
+ # @rtype: :class:`Tencentcloud::essbasic::V20210526::ModifyExtendedServiceResponse`
726
+ def ModifyExtendedService(request)
727
+ body = send_request('ModifyExtendedService', request.serialize)
728
+ response = JSON.parse(body)
729
+ if response['Response'].key?('Error') == false
730
+ model = ModifyExtendedServiceResponse.new
731
+ model.deserialize(response['Response'])
732
+ model
733
+ else
734
+ code = response['Response']['Error']['Code']
735
+ message = response['Response']['Error']['Message']
736
+ reqid = response['Response']['RequestId']
737
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
738
+ end
739
+ rescue TencentCloud::Common::TencentCloudSDKException => e
740
+ raise e
741
+ rescue StandardError => e
742
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
743
+ end
744
+
697
745
  # 此接口(OperateChannelTemplate)用于针对渠道模板库中的模板对子客企业可见性的查询和设置,不会直接分配渠道模板给子客企业。
698
746
  # 1、OperateType=select时:
699
747
  # 查询渠道模板库
@@ -1955,6 +1955,53 @@ module TencentCloud
1955
1955
  end
1956
1956
  end
1957
1957
 
1958
+ # DescribeExtendedServiceAuthInfo请求参数结构体
1959
+ class DescribeExtendedServiceAuthInfoRequest < TencentCloud::Common::AbstractModel
1960
+ # @param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填
1961
+ # @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
1962
+
1963
+ attr_accessor :Agent
1964
+
1965
+ def initialize(agent=nil)
1966
+ @Agent = agent
1967
+ end
1968
+
1969
+ def deserialize(params)
1970
+ unless params['Agent'].nil?
1971
+ @Agent = Agent.new
1972
+ @Agent.deserialize(params['Agent'])
1973
+ end
1974
+ end
1975
+ end
1976
+
1977
+ # DescribeExtendedServiceAuthInfo返回参数结构体
1978
+ class DescribeExtendedServiceAuthInfoResponse < TencentCloud::Common::AbstractModel
1979
+ # @param AuthInfo: 企业扩展服务授权信息
1980
+ # 注意:此字段可能返回 null,表示取不到有效值。
1981
+ # @type AuthInfo: Array
1982
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1983
+ # @type RequestId: String
1984
+
1985
+ attr_accessor :AuthInfo, :RequestId
1986
+
1987
+ def initialize(authinfo=nil, requestid=nil)
1988
+ @AuthInfo = authinfo
1989
+ @RequestId = requestid
1990
+ end
1991
+
1992
+ def deserialize(params)
1993
+ unless params['AuthInfo'].nil?
1994
+ @AuthInfo = []
1995
+ params['AuthInfo'].each do |i|
1996
+ extentserviceauthinfo_tmp = ExtentServiceAuthInfo.new
1997
+ extentserviceauthinfo_tmp.deserialize(i)
1998
+ @AuthInfo << extentserviceauthinfo_tmp
1999
+ end
2000
+ end
2001
+ @RequestId = params['RequestId']
2002
+ end
2003
+ end
2004
+
1958
2005
  # DescribeFlowDetailInfo请求参数结构体
1959
2006
  class DescribeFlowDetailInfoRequest < TencentCloud::Common::AbstractModel
1960
2007
  # @param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
@@ -2301,6 +2348,47 @@ module TencentCloud
2301
2348
  end
2302
2349
  end
2303
2350
 
2351
+ # 企业扩展服务授权信息
2352
+ class ExtentServiceAuthInfo < TencentCloud::Common::AbstractModel
2353
+ # @param Type: 扩展服务类型
2354
+ # AUTO_SIGN 企业静默签(自动签署)
2355
+ # OVERSEA_SIGN 企业与港澳台居民*签署合同
2356
+ # MOBILE_CHECK_APPROVER 使用手机号验证签署方身份
2357
+ # PAGING_SEAL 骑缝章
2358
+ # DOWNLOAD_FLOW 授权渠道下载合同
2359
+ # @type Type: String
2360
+ # @param Name: 扩展服务名称
2361
+ # @type Name: String
2362
+ # @param Status: 服务状态
2363
+ # ENABLE 开启
2364
+ # DISABLE 关闭
2365
+ # @type Status: String
2366
+ # @param OperatorOpenId: 最近操作人openid(经办人openid)
2367
+ # 注意:此字段可能返回 null,表示取不到有效值。
2368
+ # @type OperatorOpenId: String
2369
+ # @param OperateOn: 最近操作时间
2370
+ # 注意:此字段可能返回 null,表示取不到有效值。
2371
+ # @type OperateOn: Integer
2372
+
2373
+ attr_accessor :Type, :Name, :Status, :OperatorOpenId, :OperateOn
2374
+
2375
+ def initialize(type=nil, name=nil, status=nil, operatoropenid=nil, operateon=nil)
2376
+ @Type = type
2377
+ @Name = name
2378
+ @Status = status
2379
+ @OperatorOpenId = operatoropenid
2380
+ @OperateOn = operateon
2381
+ end
2382
+
2383
+ def deserialize(params)
2384
+ @Type = params['Type']
2385
+ @Name = params['Name']
2386
+ @Status = params['Status']
2387
+ @OperatorOpenId = params['OperatorOpenId']
2388
+ @OperateOn = params['OperateOn']
2389
+ end
2390
+ end
2391
+
2304
2392
  # 此结构体 (Filter) 用于描述查询过滤条件。
2305
2393
  class Filter < TencentCloud::Common::AbstractModel
2306
2394
  # @param Key: 查询过滤条件的Key
@@ -2929,6 +3017,63 @@ module TencentCloud
2929
3017
  end
2930
3018
  end
2931
3019
 
3020
+ # ModifyExtendedService请求参数结构体
3021
+ class ModifyExtendedServiceRequest < TencentCloud::Common::AbstractModel
3022
+ # @param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填
3023
+ # @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
3024
+ # @param ServiceType: 扩展服务类型
3025
+ # AUTO_SIGN 企业静默签(自动签署)
3026
+ # OVERSEA_SIGN 企业与港澳台居民*签署合同
3027
+ # MOBILE_CHECK_APPROVER 使用手机号验证签署方身份
3028
+ # PAGING_SEAL 骑缝章
3029
+ # DOWNLOAD_FLOW 授权渠道下载合同
3030
+ # @type ServiceType: String
3031
+ # @param Operate: 操作类型
3032
+ # OPEN:开通
3033
+ # CLOSE:关闭
3034
+ # @type Operate: String
3035
+
3036
+ attr_accessor :Agent, :ServiceType, :Operate
3037
+
3038
+ def initialize(agent=nil, servicetype=nil, operate=nil)
3039
+ @Agent = agent
3040
+ @ServiceType = servicetype
3041
+ @Operate = operate
3042
+ end
3043
+
3044
+ def deserialize(params)
3045
+ unless params['Agent'].nil?
3046
+ @Agent = Agent.new
3047
+ @Agent.deserialize(params['Agent'])
3048
+ end
3049
+ @ServiceType = params['ServiceType']
3050
+ @Operate = params['Operate']
3051
+ end
3052
+ end
3053
+
3054
+ # ModifyExtendedService返回参数结构体
3055
+ class ModifyExtendedServiceResponse < TencentCloud::Common::AbstractModel
3056
+ # @param OperateUrl: 操作跳转链接,有效期24小时
3057
+ # 仅当操作类型是 OPEN 且 扩展服务类型是 AUTO_SIGN 或 DOWNLOAD_FLOW 或者 OVERSEA_SIGN 时返回 ,此时需要经办人(操作人)点击链接完成服务开通操作。若开通操作时没有返回跳转链接,表示无需跳转操作,此时会直接开通服务
3058
+
3059
+ # 操作类型是CLOSE时,不会返回此链接,会直接关闭企业该扩展服务
3060
+ # @type OperateUrl: String
3061
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3062
+ # @type RequestId: String
3063
+
3064
+ attr_accessor :OperateUrl, :RequestId
3065
+
3066
+ def initialize(operateurl=nil, requestid=nil)
3067
+ @OperateUrl = operateurl
3068
+ @RequestId = requestid
3069
+ end
3070
+
3071
+ def deserialize(params)
3072
+ @OperateUrl = params['OperateUrl']
3073
+ @RequestId = params['RequestId']
3074
+ end
3075
+ end
3076
+
2932
3077
  # 持有的电子印章信息
2933
3078
  class OccupiedSeal < TencentCloud::Common::AbstractModel
2934
3079
  # @param SealId: 电子印章编号
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.491
4
+ version: 3.0.492
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-01-11 00:00:00.000000000 Z
11
+ date: 2023-01-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common