tencentcloud-sdk-ess 3.0.621 → 3.0.623

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: 2abfd3809b7a71976925d1a9a6e4b25b3ab5c279
4
- data.tar.gz: d3ada01f60a1ad2dd18ee0996108da7910e666ad
3
+ metadata.gz: aba895f8cbb6089156fb4361585e4b33c8e6a38f
4
+ data.tar.gz: 19efb080f4975578c1a0be73cfcfec3169cc5a52
5
5
  SHA512:
6
- metadata.gz: 0408173e9d75ce308dfe53c40c8406b2fb6f565384a332364047f556f90bba436ff2fad2348a90940de200335a9f240476abd80d27d1aafe2953952d80663a06
7
- data.tar.gz: 779eede2a1accf42708b8fb0c993ee63b39c1a978f80645147a6a2181ae6436e042073041c70f32fb8f8d453ef6f23d0ff062f0d3fde18c16229102ac871f3fd
6
+ metadata.gz: a3f44616ad22e01bbb0e57651a5669a7a6a3cbf0d4d7cc98f891936e58a1c821ef7ad3d657d0a95c217fcd1b84875d875518398680a6ad370c17105af8fc4a3a
7
+ data.tar.gz: b116fbfebdd782e85c23e5f8d2a310bbf3904e31841abff6e7b26d7a21194997484f51fb6bd06585234351f29a2b9282367520ddad8fe3b2890ba67dc48ec7a8
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.621
1
+ 3.0.623
@@ -233,6 +233,30 @@ module TencentCloud
233
233
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
234
234
  end
235
235
 
236
+ # 本接口(CreateEmbedWebUrl)用于创建嵌入web的链接 本接口支持创建:创建印章,创建模板,修改模板,预览模板,预览合同流程的web链接 进入web连接后与当前控制台操作保持一致
237
+
238
+ # @param request: Request instance for CreateEmbedWebUrl.
239
+ # @type request: :class:`Tencentcloud::ess::V20201111::CreateEmbedWebUrlRequest`
240
+ # @rtype: :class:`Tencentcloud::ess::V20201111::CreateEmbedWebUrlResponse`
241
+ def CreateEmbedWebUrl(request)
242
+ body = send_request('CreateEmbedWebUrl', request.serialize)
243
+ response = JSON.parse(body)
244
+ if response['Response'].key?('Error') == false
245
+ model = CreateEmbedWebUrlResponse.new
246
+ model.deserialize(response['Response'])
247
+ model
248
+ else
249
+ code = response['Response']['Error']['Code']
250
+ message = response['Response']['Error']['Message']
251
+ reqid = response['Response']['RequestId']
252
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
253
+ end
254
+ rescue TencentCloud::Common::TencentCloudSDKException => e
255
+ raise e
256
+ rescue StandardError => e
257
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
258
+ end
259
+
236
260
  # 通过模板创建签署流程<br/>
237
261
  # 适用场景:在标准制式的合同场景中,可通过提前预制好模板文件,每次调用模板文件的id,补充合同内容信息及签署信息生成电子合同。<br/>
238
262
  # 注:该接口是通过模板生成合同流程的前置接口,先创建一个不包含签署文件的流程。<br/>
@@ -447,8 +471,10 @@ module TencentCloud
447
471
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
448
472
  end
449
473
 
450
- # 创建个人H5签署链接,请联系客户经理申请使用 <br/>
451
- # 该接口用于发起合同后,生成C端签署人的签署链接 <br/>
474
+ # 创建个人H5签署链接,请联系客户经理申请开通使用, 否则调用会返回失败 <br/>
475
+
476
+ # 该接口用于发起合同后,生成个人签署人的签署链接, 暂时不支持企业端签署 <br/>
477
+
452
478
  # 注意:该接口目前签署人类型仅支持个人签署方(PERSON) <br/>
453
479
  # 注意:该接口可生成签署链接的C端签署人必须仅有手写签名和时间类型的签署控件<br/>
454
480
  # 注意:该接口返回的签署链接是用于APP集成的场景,支持APP打开或浏览器直接打开,不支持微信小程序嵌入。微信小程序请使用小程序跳转或半屏弹窗的方式<br/>
@@ -579,6 +605,31 @@ module TencentCloud
579
605
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
580
606
  end
581
607
 
608
+ # 通过此接口,创建企业批量签署链接,企业员工点击链接即可跳转控制台进行批量签署。
609
+ # 如果没有UserId,Name和Mobile必填,对应的员工必须在企业下已经实名,且该员工为批量签署合同中的签署方。
610
+
611
+ # @param request: Request instance for CreateOrganizationBatchSignUrl.
612
+ # @type request: :class:`Tencentcloud::ess::V20201111::CreateOrganizationBatchSignUrlRequest`
613
+ # @rtype: :class:`Tencentcloud::ess::V20201111::CreateOrganizationBatchSignUrlResponse`
614
+ def CreateOrganizationBatchSignUrl(request)
615
+ body = send_request('CreateOrganizationBatchSignUrl', request.serialize)
616
+ response = JSON.parse(body)
617
+ if response['Response'].key?('Error') == false
618
+ model = CreateOrganizationBatchSignUrlResponse.new
619
+ model.deserialize(response['Response'])
620
+ model
621
+ else
622
+ code = response['Response']['Error']['Code']
623
+ message = response['Response']['Error']['Message']
624
+ reqid = response['Response']['RequestId']
625
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
626
+ end
627
+ rescue TencentCloud::Common::TencentCloudSDKException => e
628
+ raise e
629
+ rescue StandardError => e
630
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
631
+ end
632
+
582
633
  # 创建快速发起流程
583
634
  # 适用场景:用户通过API 合同文件及签署信息,并可通过我们返回的URL在页面完成签署控件等信息的编辑与确认,快速发起合同.
584
635
  # 注:该接口文件的resourceId 是通过上传文件之后获取的。
@@ -759,6 +810,30 @@ module TencentCloud
759
810
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
760
811
  end
761
812
 
813
+ # 用来创建页面主题配置
814
+
815
+ # @param request: Request instance for CreateWebThemeConfig.
816
+ # @type request: :class:`Tencentcloud::ess::V20201111::CreateWebThemeConfigRequest`
817
+ # @rtype: :class:`Tencentcloud::ess::V20201111::CreateWebThemeConfigResponse`
818
+ def CreateWebThemeConfig(request)
819
+ body = send_request('CreateWebThemeConfig', request.serialize)
820
+ response = JSON.parse(body)
821
+ if response['Response'].key?('Error') == false
822
+ model = CreateWebThemeConfigResponse.new
823
+ model.deserialize(response['Response'])
824
+ model
825
+ else
826
+ code = response['Response']['Error']['Code']
827
+ message = response['Response']['Error']['Message']
828
+ reqid = response['Response']['RequestId']
829
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
830
+ end
831
+ rescue TencentCloud::Common::TencentCloudSDKException => e
832
+ raise e
833
+ rescue StandardError => e
834
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
835
+ end
836
+
762
837
  # 通过此接口,删除企业的部门。
763
838
 
764
839
  # @param request: Request instance for DeleteIntegrationDepartment.
@@ -1003,8 +1078,18 @@ module TencentCloud
1003
1078
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1004
1079
  end
1005
1080
 
1006
- # 当模板较多或模板中的控件较多时,可以通过查询模板接口更方便的获取模板列表,以及每个模板内的控件信息。<br/>
1007
- # 该接口常用来配合“创建电子文档”接口作为前置的接口使用。<br/>
1081
+ # 本接口用于查询本企业模板列表。
1082
+
1083
+ # 当模板较多或模板中的控件较多时,可以通过查询模板接口更方便的获取模板列表,以及每个模板内的控件信息。
1084
+
1085
+ # > **适用场景**
1086
+ # > 该接口常用来配合“模板发起合同-创建电子文档”接口作为前置的接口使用。
1087
+ # > 一个模板通常会包含以下结构信息
1088
+ # >- 模板基本信息
1089
+ # >- 发起方参与信息Promoter、签署参与方 Recipients,后者会在模板发起合同时用于指定参与方
1090
+ # >- 填写控件 Components
1091
+ # >- 签署控件 SignComponents
1092
+ # >- 生成模板的文件基础信息 FileInfos
1008
1093
 
1009
1094
  # @param request: Request instance for DescribeFlowTemplates.
1010
1095
  # @type request: :class:`Tencentcloud::ess::V20201111::DescribeFlowTemplatesRequest`
@@ -1081,6 +1081,73 @@ module TencentCloud
1081
1081
  end
1082
1082
  end
1083
1083
 
1084
+ # CreateEmbedWebUrl请求参数结构体
1085
+ class CreateEmbedWebUrlRequest < TencentCloud::Common::AbstractModel
1086
+ # @param Operator: 操作者信息
1087
+ # @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
1088
+ # @param EmbedType: WEB嵌入资源类型。
1089
+ # <br/>CREATE_SEAL: 创建印章
1090
+ # <br/>PREVIEW_SEAL_LIST:预览印章列表
1091
+ # <br/>PREVIEW_SEAL_DETAIL:预览印章详情
1092
+ # <br/>EXTEND_SERVICE:拓展服务
1093
+ # @type EmbedType: String
1094
+ # @param BusinessId: WEB嵌入的业务资源ID
1095
+ # <br/>PREVIEW_SEAL_DETAIL,必填,取值为印章id
1096
+ # @type BusinessId: String
1097
+ # @param Agent: 代理相关应用信息,如集团主企业代子企业操作
1098
+ # @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
1099
+ # @param Reviewer: 抄送方信息
1100
+ # @type Reviewer: :class:`Tencentcloud::Ess.v20201111.models.ReviewerInfo`
1101
+
1102
+ attr_accessor :Operator, :EmbedType, :BusinessId, :Agent, :Reviewer
1103
+
1104
+ def initialize(operator=nil, embedtype=nil, businessid=nil, agent=nil, reviewer=nil)
1105
+ @Operator = operator
1106
+ @EmbedType = embedtype
1107
+ @BusinessId = businessid
1108
+ @Agent = agent
1109
+ @Reviewer = reviewer
1110
+ end
1111
+
1112
+ def deserialize(params)
1113
+ unless params['Operator'].nil?
1114
+ @Operator = UserInfo.new
1115
+ @Operator.deserialize(params['Operator'])
1116
+ end
1117
+ @EmbedType = params['EmbedType']
1118
+ @BusinessId = params['BusinessId']
1119
+ unless params['Agent'].nil?
1120
+ @Agent = Agent.new
1121
+ @Agent.deserialize(params['Agent'])
1122
+ end
1123
+ unless params['Reviewer'].nil?
1124
+ @Reviewer = ReviewerInfo.new
1125
+ @Reviewer.deserialize(params['Reviewer'])
1126
+ end
1127
+ end
1128
+ end
1129
+
1130
+ # CreateEmbedWebUrl返回参数结构体
1131
+ class CreateEmbedWebUrlResponse < TencentCloud::Common::AbstractModel
1132
+ # @param WebUrl: 嵌入的web链接,有效期:5分钟
1133
+ # EmbedType=PREVIEW_CC_FLOW,该url为h5链接
1134
+ # @type WebUrl: String
1135
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1136
+ # @type RequestId: String
1137
+
1138
+ attr_accessor :WebUrl, :RequestId
1139
+
1140
+ def initialize(weburl=nil, requestid=nil)
1141
+ @WebUrl = weburl
1142
+ @RequestId = requestid
1143
+ end
1144
+
1145
+ def deserialize(params)
1146
+ @WebUrl = params['WebUrl']
1147
+ @RequestId = params['RequestId']
1148
+ end
1149
+ end
1150
+
1084
1151
  # CreateFlowApprovers请求参数结构体
1085
1152
  class CreateFlowApproversRequest < TencentCloud::Common::AbstractModel
1086
1153
  # @param Operator: 调用方用户信息,userId 必填
@@ -1786,7 +1853,9 @@ module TencentCloud
1786
1853
  class CreateFlowSignUrlRequest < TencentCloud::Common::AbstractModel
1787
1854
  # @param FlowId: 流程编号
1788
1855
  # @type FlowId: String
1789
- # @param FlowApproverInfos: 流程签署人,其中ApproverName,ApproverMobile和ApproverType必传,其他可不传,ApproverType目前只支持个人类型的签署人。还需注意签署人只能有手写签名和时间类型的签署控件,其他类型的填写控件和签署控件暂时都未支持。
1856
+ # @param FlowApproverInfos: 流程签署人列表,其中结构体的ApproverName,ApproverMobile和ApproverType必传,其他可不传,ApproverType目前只支持个人类型的签署人。
1857
+
1858
+ # 签署人只能有手写签名和时间类型的签署控件,其他类型的填写控件和签署控件暂时都未支持。
1790
1859
  # @type FlowApproverInfos: Array
1791
1860
  # @param Operator: 用户信息,此结构体UserId必填
1792
1861
  # @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
@@ -2156,6 +2225,72 @@ module TencentCloud
2156
2225
  end
2157
2226
  end
2158
2227
 
2228
+ # CreateOrganizationBatchSignUrl请求参数结构体
2229
+ class CreateOrganizationBatchSignUrlRequest < TencentCloud::Common::AbstractModel
2230
+ # @param Operator: 调用方用户信息,UserId 必填,支持填入集团子公司经办人UserId。
2231
+ # @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
2232
+ # @param FlowIds: 指定需要进行批量签署的流程id,数量1-100,填写后用户将通过链接对这些合同进行批量签署。
2233
+ # @type FlowIds: Array
2234
+ # @param Agent: 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填。
2235
+ # @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
2236
+ # @param UserId: 员工的UserId,该UserId对应的员工必须已经加入企业并实名,Name和Mobile为空时该字段不能为空。(优先使用UserId对应的员工)
2237
+ # @type UserId: String
2238
+ # @param Name: 员工姓名,该字段需要与Mobile组合使用,UserId为空时该字段不能为空。(UserId为空时,使用Name和Mbile对应的员工)
2239
+ # @type Name: String
2240
+ # @param Mobile: 员工手机号码,该字段需要与Name组合使用,UserId为空时该字段不能为空。(UserId为空时,使用Name和Mbile对应的员工)
2241
+ # @type Mobile: String
2242
+
2243
+ attr_accessor :Operator, :FlowIds, :Agent, :UserId, :Name, :Mobile
2244
+
2245
+ def initialize(operator=nil, flowids=nil, agent=nil, userid=nil, name=nil, mobile=nil)
2246
+ @Operator = operator
2247
+ @FlowIds = flowids
2248
+ @Agent = agent
2249
+ @UserId = userid
2250
+ @Name = name
2251
+ @Mobile = mobile
2252
+ end
2253
+
2254
+ def deserialize(params)
2255
+ unless params['Operator'].nil?
2256
+ @Operator = UserInfo.new
2257
+ @Operator.deserialize(params['Operator'])
2258
+ end
2259
+ @FlowIds = params['FlowIds']
2260
+ unless params['Agent'].nil?
2261
+ @Agent = Agent.new
2262
+ @Agent.deserialize(params['Agent'])
2263
+ end
2264
+ @UserId = params['UserId']
2265
+ @Name = params['Name']
2266
+ @Mobile = params['Mobile']
2267
+ end
2268
+ end
2269
+
2270
+ # CreateOrganizationBatchSignUrl返回参数结构体
2271
+ class CreateOrganizationBatchSignUrlResponse < TencentCloud::Common::AbstractModel
2272
+ # @param SignUrl: 批量签署入口链接
2273
+ # @type SignUrl: String
2274
+ # @param ExpiredTime: 链接过期时间戳
2275
+ # @type ExpiredTime: Integer
2276
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2277
+ # @type RequestId: String
2278
+
2279
+ attr_accessor :SignUrl, :ExpiredTime, :RequestId
2280
+
2281
+ def initialize(signurl=nil, expiredtime=nil, requestid=nil)
2282
+ @SignUrl = signurl
2283
+ @ExpiredTime = expiredtime
2284
+ @RequestId = requestid
2285
+ end
2286
+
2287
+ def deserialize(params)
2288
+ @SignUrl = params['SignUrl']
2289
+ @ExpiredTime = params['ExpiredTime']
2290
+ @RequestId = params['RequestId']
2291
+ end
2292
+ end
2293
+
2159
2294
  # CreatePrepareFlow请求参数结构体
2160
2295
  class CreatePrepareFlowRequest < TencentCloud::Common::AbstractModel
2161
2296
  # @param Operator: 调用方用户信息,userId 必填
@@ -2175,10 +2310,12 @@ module TencentCloud
2175
2310
  # @type Approvers: Array
2176
2311
  # @param IntelligentStatus: 打开智能添加填写区(默认开启,打开:"OPEN" 关闭:"CLOSE")
2177
2312
  # @type IntelligentStatus: String
2313
+ # @param Agent: 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
2314
+ # @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
2178
2315
 
2179
- attr_accessor :Operator, :ResourceId, :FlowName, :Unordered, :Deadline, :UserFlowTypeId, :Approvers, :IntelligentStatus
2316
+ attr_accessor :Operator, :ResourceId, :FlowName, :Unordered, :Deadline, :UserFlowTypeId, :Approvers, :IntelligentStatus, :Agent
2180
2317
 
2181
- def initialize(operator=nil, resourceid=nil, flowname=nil, unordered=nil, deadline=nil, userflowtypeid=nil, approvers=nil, intelligentstatus=nil)
2318
+ def initialize(operator=nil, resourceid=nil, flowname=nil, unordered=nil, deadline=nil, userflowtypeid=nil, approvers=nil, intelligentstatus=nil, agent=nil)
2182
2319
  @Operator = operator
2183
2320
  @ResourceId = resourceid
2184
2321
  @FlowName = flowname
@@ -2187,6 +2324,7 @@ module TencentCloud
2187
2324
  @UserFlowTypeId = userflowtypeid
2188
2325
  @Approvers = approvers
2189
2326
  @IntelligentStatus = intelligentstatus
2327
+ @Agent = agent
2190
2328
  end
2191
2329
 
2192
2330
  def deserialize(params)
@@ -2208,6 +2346,10 @@ module TencentCloud
2208
2346
  end
2209
2347
  end
2210
2348
  @IntelligentStatus = params['IntelligentStatus']
2349
+ unless params['Agent'].nil?
2350
+ @Agent = Agent.new
2351
+ @Agent.deserialize(params['Agent'])
2352
+ end
2211
2353
  end
2212
2354
  end
2213
2355
 
@@ -2800,6 +2942,54 @@ module TencentCloud
2800
2942
  end
2801
2943
  end
2802
2944
 
2945
+ # CreateWebThemeConfig请求参数结构体
2946
+ class CreateWebThemeConfigRequest < TencentCloud::Common::AbstractModel
2947
+ # @param Operator: 操作人信息
2948
+ # @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
2949
+ # @param ThemeType: 主题类型
2950
+ # <br/>EMBED_WEB_THEME:嵌入式主题
2951
+ # <br/>目前只支持EMBED_WEB_THEME,web页面嵌入的主题风格配置
2952
+ # @type ThemeType: String
2953
+ # @param WebThemeConfig: 主题配置
2954
+ # @type WebThemeConfig: :class:`Tencentcloud::Ess.v20201111.models.WebThemeConfig`
2955
+
2956
+ attr_accessor :Operator, :ThemeType, :WebThemeConfig
2957
+
2958
+ def initialize(operator=nil, themetype=nil, webthemeconfig=nil)
2959
+ @Operator = operator
2960
+ @ThemeType = themetype
2961
+ @WebThemeConfig = webthemeconfig
2962
+ end
2963
+
2964
+ def deserialize(params)
2965
+ unless params['Operator'].nil?
2966
+ @Operator = UserInfo.new
2967
+ @Operator.deserialize(params['Operator'])
2968
+ end
2969
+ @ThemeType = params['ThemeType']
2970
+ unless params['WebThemeConfig'].nil?
2971
+ @WebThemeConfig = WebThemeConfig.new
2972
+ @WebThemeConfig.deserialize(params['WebThemeConfig'])
2973
+ end
2974
+ end
2975
+ end
2976
+
2977
+ # CreateWebThemeConfig返回参数结构体
2978
+ class CreateWebThemeConfigResponse < TencentCloud::Common::AbstractModel
2979
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2980
+ # @type RequestId: String
2981
+
2982
+ attr_accessor :RequestId
2983
+
2984
+ def initialize(requestid=nil)
2985
+ @RequestId = requestid
2986
+ end
2987
+
2988
+ def deserialize(params)
2989
+ @RequestId = params['RequestId']
2990
+ end
2991
+ end
2992
+
2803
2993
  # DeleteIntegrationDepartment请求参数结构体
2804
2994
  class DeleteIntegrationDepartmentRequest < TencentCloud::Common::AbstractModel
2805
2995
  # @param Operator: 操作人信息,UserId必填且需拥有组织架构管理权限
@@ -3485,19 +3675,27 @@ module TencentCloud
3485
3675
 
3486
3676
  # DescribeFlowTemplates请求参数结构体
3487
3677
  class DescribeFlowTemplatesRequest < TencentCloud::Common::AbstractModel
3488
- # @param Operator: 调用方用户信息,userId 必填
3678
+ # @param Operator: 调用方员工/经办人信息
3679
+ # UserId 必填,在企业控制台组织架构中可以查到员工的UserId
3680
+ # 注:请保证对应
3489
3681
  # @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
3490
- # @param Agent: 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
3682
+ # @param Agent: 代理相关应用信息
3683
+ # 如集团主企业代子企业操作的场景中ProxyOrganizationId必填
3491
3684
  # @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
3492
- # @param ContentType: 查询内容:0-模板列表及详情(默认),1-仅模板列表
3685
+ # @param ContentType: 查询内容类型
3686
+ # 0-模板列表及详情(默认)
3687
+ # 1-仅模板列表
3493
3688
  # @type ContentType: Integer
3494
- # @param Filters: 搜索条件,具体参考Filter结构体。本接口取值:template-id:按照【 **模板唯一标识** 】进行过滤
3689
+ # @param Filters: 搜索条件,本字段用于指定模板Id进行查询。
3690
+ # Key:template-id
3691
+ # Values:需要查询的模板Id列表
3495
3692
  # @type Filters: Array
3496
- # @param Offset: 查询偏移位置,默认0
3693
+ # @param Offset: 查询结果分页返回,此处指定第几页,如果不传默从第一页返回。页码从0开始,即首页为0。
3497
3694
  # @type Offset: Integer
3498
- # @param Limit: 查询个数,默认20,最大200
3695
+ # @param Limit: 指定每页多少条数据,如果不传默认为20,单页最大200
3499
3696
  # @type Limit: Integer
3500
- # @param ApplicationId: ApplicationId不为空,查询指定应用下的模板列表
3697
+ # @param ApplicationId: 用于查询指定应用号下单模板列表。
3698
+ # ApplicationId不为空,查询指定应用下的模板列表
3501
3699
  # ApplicationId为空,查询所有应用下的模板列表
3502
3700
  # @type ApplicationId: String
3503
3701
  # @param IsChannel: 默认为false,查询SaaS模板库列表;
@@ -4765,13 +4963,17 @@ module TencentCloud
4765
4963
  # ESIGN -- 个人印章类型
4766
4964
  # SYSTEM_ESIGN -- 系统签名(该类型可以在用户签署时根据用户姓名一键生成一个签名来进行签署)
4767
4965
  # @type ComponentLimitType: Array
4966
+ # @param ApproverVerifyTypes: 合同查看方式<br/>默认1 -实名查看 <br/>2-短信验证码查看(企业签署方暂不支持该方式)
4967
+ # @type ApproverVerifyTypes: Array
4968
+ # @param ApproverSignTypes: 合同签署方式(默认1,2) <br/>1-人脸认证 <br/>2-签署密码 <br/>3-运营商三要素
4969
+ # @type ApproverSignTypes: Array
4768
4970
 
4769
- attr_accessor :ApproverType, :OrganizationName, :ApproverName, :ApproverMobile, :ApproverIdCardType, :ApproverIdCardNumber, :RecipientId, :VerifyChannel, :NotifyType, :IsFullText, :PreReadTime, :UserId, :Required, :ApproverSource, :CustomApproverTag, :RegisterInfo, :ApproverOption, :JumpUrl, :SignId, :ApproverNeedSignReview, :SignComponents, :Components, :ComponentLimitType
4971
+ attr_accessor :ApproverType, :OrganizationName, :ApproverName, :ApproverMobile, :ApproverIdCardType, :ApproverIdCardNumber, :RecipientId, :VerifyChannel, :NotifyType, :IsFullText, :PreReadTime, :UserId, :Required, :ApproverSource, :CustomApproverTag, :RegisterInfo, :ApproverOption, :JumpUrl, :SignId, :ApproverNeedSignReview, :SignComponents, :Components, :ComponentLimitType, :ApproverVerifyTypes, :ApproverSignTypes
4770
4972
  extend Gem::Deprecate
4771
4973
  deprecate :JumpUrl, :none, 2023, 7
4772
4974
  deprecate :JumpUrl=, :none, 2023, 7
4773
4975
 
4774
- def initialize(approvertype=nil, organizationname=nil, approvername=nil, approvermobile=nil, approveridcardtype=nil, approveridcardnumber=nil, recipientid=nil, verifychannel=nil, notifytype=nil, isfulltext=nil, prereadtime=nil, userid=nil, required=nil, approversource=nil, customapprovertag=nil, registerinfo=nil, approveroption=nil, jumpurl=nil, signid=nil, approverneedsignreview=nil, signcomponents=nil, components=nil, componentlimittype=nil)
4976
+ def initialize(approvertype=nil, organizationname=nil, approvername=nil, approvermobile=nil, approveridcardtype=nil, approveridcardnumber=nil, recipientid=nil, verifychannel=nil, notifytype=nil, isfulltext=nil, prereadtime=nil, userid=nil, required=nil, approversource=nil, customapprovertag=nil, registerinfo=nil, approveroption=nil, jumpurl=nil, signid=nil, approverneedsignreview=nil, signcomponents=nil, components=nil, componentlimittype=nil, approververifytypes=nil, approversigntypes=nil)
4775
4977
  @ApproverType = approvertype
4776
4978
  @OrganizationName = organizationname
4777
4979
  @ApproverName = approvername
@@ -4795,6 +4997,8 @@ module TencentCloud
4795
4997
  @SignComponents = signcomponents
4796
4998
  @Components = components
4797
4999
  @ComponentLimitType = componentlimittype
5000
+ @ApproverVerifyTypes = approververifytypes
5001
+ @ApproverSignTypes = approversigntypes
4798
5002
  end
4799
5003
 
4800
5004
  def deserialize(params)
@@ -4841,6 +5045,8 @@ module TencentCloud
4841
5045
  end
4842
5046
  end
4843
5047
  @ComponentLimitType = params['ComponentLimitType']
5048
+ @ApproverVerifyTypes = params['ApproverVerifyTypes']
5049
+ @ApproverSignTypes = params['ApproverSignTypes']
4844
5050
  end
4845
5051
  end
4846
5052
 
@@ -5968,6 +6174,26 @@ module TencentCloud
5968
6174
  end
5969
6175
  end
5970
6176
 
6177
+ # 关注方信息
6178
+ class ReviewerInfo < TencentCloud::Common::AbstractModel
6179
+ # @param Name: 姓名
6180
+ # @type Name: String
6181
+ # @param Mobile: 手机号
6182
+ # @type Mobile: String
6183
+
6184
+ attr_accessor :Name, :Mobile
6185
+
6186
+ def initialize(name=nil, mobile=nil)
6187
+ @Name = name
6188
+ @Mobile = mobile
6189
+ end
6190
+
6191
+ def deserialize(params)
6192
+ @Name = params['Name']
6193
+ @Mobile = params['Mobile']
6194
+ end
6195
+ end
6196
+
5971
6197
  # 模板结构体中的印章信息
5972
6198
  class SealInfo < TencentCloud::Common::AbstractModel
5973
6199
 
@@ -6798,6 +7024,30 @@ module TencentCloud
6798
7024
  end
6799
7025
  end
6800
7026
 
7027
+ # 页面主题配置
7028
+ class WebThemeConfig < TencentCloud::Common::AbstractModel
7029
+ # @param DisplaySignBrandLogo: 是否页面底部显示电子签logo
7030
+ # <br/>true:允许在页面底部隐藏电子签logo
7031
+ # <br/>false:不允许允许在页面底部隐藏电子签logo
7032
+ # <br/>默认false,不隐藏logo
7033
+ # @type DisplaySignBrandLogo: Boolean
7034
+ # @param WebEmbedThemeColor: 主题颜色
7035
+ # <br/>支持十六进制颜色值以及RGB格式颜色值,例如:#D54941,rgb(213, 73, 65)
7036
+ # @type WebEmbedThemeColor: String
7037
+
7038
+ attr_accessor :DisplaySignBrandLogo, :WebEmbedThemeColor
7039
+
7040
+ def initialize(displaysignbrandlogo=nil, webembedthemecolor=nil)
7041
+ @DisplaySignBrandLogo = displaysignbrandlogo
7042
+ @WebEmbedThemeColor = webembedthemecolor
7043
+ end
7044
+
7045
+ def deserialize(params)
7046
+ @DisplaySignBrandLogo = params['DisplaySignBrandLogo']
7047
+ @WebEmbedThemeColor = params['WebEmbedThemeColor']
7048
+ end
7049
+ end
7050
+
6801
7051
  end
6802
7052
  end
6803
7053
  end
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.621
4
+ version: 3.0.623
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-07-26 00:00:00.000000000 Z
11
+ date: 2023-07-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common