tencentcloud-sdk-rce 3.0.876 → 3.0.877

Sign up to get free protection for your applications and to get access to all the features.
@@ -58,6 +58,48 @@ module TencentCloud
58
58
  end
59
59
  end
60
60
 
61
+ # CreateNameList请求参数结构体
62
+ class CreateNameListRequest < TencentCloud::Common::AbstractModel
63
+ # @param BusinessSecurityData: 业务入参
64
+ # @type BusinessSecurityData: :class:`Tencentcloud::Rce.v20201103.models.InputCreateNameListFront`
65
+
66
+ attr_accessor :BusinessSecurityData
67
+
68
+ def initialize(businesssecuritydata=nil)
69
+ @BusinessSecurityData = businesssecuritydata
70
+ end
71
+
72
+ def deserialize(params)
73
+ unless params['BusinessSecurityData'].nil?
74
+ @BusinessSecurityData = InputCreateNameListFront.new
75
+ @BusinessSecurityData.deserialize(params['BusinessSecurityData'])
76
+ end
77
+ end
78
+ end
79
+
80
+ # CreateNameList返回参数结构体
81
+ class CreateNameListResponse < TencentCloud::Common::AbstractModel
82
+ # @param Data: 业务出参
83
+ # @type Data: :class:`Tencentcloud::Rce.v20201103.models.OutputCreateNameListFront`
84
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
85
+ # @type RequestId: String
86
+
87
+ attr_accessor :Data, :RequestId
88
+
89
+ def initialize(data=nil, requestid=nil)
90
+ @Data = data
91
+ @RequestId = requestid
92
+ end
93
+
94
+ def deserialize(params)
95
+ unless params['Data'].nil?
96
+ @Data = OutputCreateNameListFront.new
97
+ @Data.deserialize(params['Data'])
98
+ end
99
+ @RequestId = params['RequestId']
100
+ end
101
+ end
102
+
61
103
  # 数据授权信息
62
104
  class DataAuthorizationInfo < TencentCloud::Common::AbstractModel
63
105
  # @param DataProviderName: 客户主体名称。
@@ -132,6 +174,322 @@ module TencentCloud
132
174
  end
133
175
  end
134
176
 
177
+ # 黑白名单导入名单数据的业务入参数据结构
178
+ class DataContentInfo < TencentCloud::Common::AbstractModel
179
+ # @param DataContent: 名单数据内容
180
+ # @type DataContent: String
181
+ # @param DataRemark: 名单数据描述
182
+ # @type DataRemark: String
183
+ # @param StartTime: 名单数据开始时间,时间格式示例"2024-05-05 12:10:15"
184
+ # @type StartTime: String
185
+ # @param EndTime: 名单数据结束时间,时间格式示例"2024-05-05 12:10:15"
186
+ # @type EndTime: String
187
+
188
+ attr_accessor :DataContent, :DataRemark, :StartTime, :EndTime
189
+
190
+ def initialize(datacontent=nil, dataremark=nil, starttime=nil, endtime=nil)
191
+ @DataContent = datacontent
192
+ @DataRemark = dataremark
193
+ @StartTime = starttime
194
+ @EndTime = endtime
195
+ end
196
+
197
+ def deserialize(params)
198
+ @DataContent = params['DataContent']
199
+ @DataRemark = params['DataRemark']
200
+ @StartTime = params['StartTime']
201
+ @EndTime = params['EndTime']
202
+ end
203
+ end
204
+
205
+ # DeleteNameListData请求参数结构体
206
+ class DeleteNameListDataRequest < TencentCloud::Common::AbstractModel
207
+ # @param BusinessSecurityData: 业务入参
208
+ # @type BusinessSecurityData: :class:`Tencentcloud::Rce.v20201103.models.InputDeleteNameListData`
209
+
210
+ attr_accessor :BusinessSecurityData
211
+
212
+ def initialize(businesssecuritydata=nil)
213
+ @BusinessSecurityData = businesssecuritydata
214
+ end
215
+
216
+ def deserialize(params)
217
+ unless params['BusinessSecurityData'].nil?
218
+ @BusinessSecurityData = InputDeleteNameListData.new
219
+ @BusinessSecurityData.deserialize(params['BusinessSecurityData'])
220
+ end
221
+ end
222
+ end
223
+
224
+ # DeleteNameListData返回参数结构体
225
+ class DeleteNameListDataResponse < TencentCloud::Common::AbstractModel
226
+ # @param Data: 业务出参
227
+ # @type Data: :class:`Tencentcloud::Rce.v20201103.models.OutputDeleteNameListData`
228
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
229
+ # @type RequestId: String
230
+
231
+ attr_accessor :Data, :RequestId
232
+
233
+ def initialize(data=nil, requestid=nil)
234
+ @Data = data
235
+ @RequestId = requestid
236
+ end
237
+
238
+ def deserialize(params)
239
+ unless params['Data'].nil?
240
+ @Data = OutputDeleteNameListData.new
241
+ @Data.deserialize(params['Data'])
242
+ end
243
+ @RequestId = params['RequestId']
244
+ end
245
+ end
246
+
247
+ # DeleteNameList请求参数结构体
248
+ class DeleteNameListRequest < TencentCloud::Common::AbstractModel
249
+ # @param BusinessSecurityData: 业务入参
250
+ # @type BusinessSecurityData: :class:`Tencentcloud::Rce.v20201103.models.InputDeleteNameListFront`
251
+
252
+ attr_accessor :BusinessSecurityData
253
+
254
+ def initialize(businesssecuritydata=nil)
255
+ @BusinessSecurityData = businesssecuritydata
256
+ end
257
+
258
+ def deserialize(params)
259
+ unless params['BusinessSecurityData'].nil?
260
+ @BusinessSecurityData = InputDeleteNameListFront.new
261
+ @BusinessSecurityData.deserialize(params['BusinessSecurityData'])
262
+ end
263
+ end
264
+ end
265
+
266
+ # DeleteNameList返回参数结构体
267
+ class DeleteNameListResponse < TencentCloud::Common::AbstractModel
268
+ # @param Data: 业务出参
269
+ # @type Data: :class:`Tencentcloud::Rce.v20201103.models.OutputDeleteNameListFront`
270
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
271
+ # @type RequestId: String
272
+
273
+ attr_accessor :Data, :RequestId
274
+
275
+ def initialize(data=nil, requestid=nil)
276
+ @Data = data
277
+ @RequestId = requestid
278
+ end
279
+
280
+ def deserialize(params)
281
+ unless params['Data'].nil?
282
+ @Data = OutputDeleteNameListFront.new
283
+ @Data.deserialize(params['Data'])
284
+ end
285
+ @RequestId = params['RequestId']
286
+ end
287
+ end
288
+
289
+ # DescribeNameListDataList请求参数结构体
290
+ class DescribeNameListDataListRequest < TencentCloud::Common::AbstractModel
291
+ # @param BusinessSecurityData: 业务入参
292
+ # @type BusinessSecurityData: :class:`Tencentcloud::Rce.v20201103.models.InputDescribeDataListFront`
293
+
294
+ attr_accessor :BusinessSecurityData
295
+
296
+ def initialize(businesssecuritydata=nil)
297
+ @BusinessSecurityData = businesssecuritydata
298
+ end
299
+
300
+ def deserialize(params)
301
+ unless params['BusinessSecurityData'].nil?
302
+ @BusinessSecurityData = InputDescribeDataListFront.new
303
+ @BusinessSecurityData.deserialize(params['BusinessSecurityData'])
304
+ end
305
+ end
306
+ end
307
+
308
+ # DescribeNameListDataList返回参数结构体
309
+ class DescribeNameListDataListResponse < TencentCloud::Common::AbstractModel
310
+ # @param Data: 业务出参
311
+ # @type Data: :class:`Tencentcloud::Rce.v20201103.models.OutputDescribeDataListFrontData`
312
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
313
+ # @type RequestId: String
314
+
315
+ attr_accessor :Data, :RequestId
316
+
317
+ def initialize(data=nil, requestid=nil)
318
+ @Data = data
319
+ @RequestId = requestid
320
+ end
321
+
322
+ def deserialize(params)
323
+ unless params['Data'].nil?
324
+ @Data = OutputDescribeDataListFrontData.new
325
+ @Data.deserialize(params['Data'])
326
+ end
327
+ @RequestId = params['RequestId']
328
+ end
329
+ end
330
+
331
+ # DescribeNameListDetail请求参数结构体
332
+ class DescribeNameListDetailRequest < TencentCloud::Common::AbstractModel
333
+ # @param BusinessSecurityData: 业务入参
334
+ # @type BusinessSecurityData: :class:`Tencentcloud::Rce.v20201103.models.InputDescribeNameListDetail`
335
+
336
+ attr_accessor :BusinessSecurityData
337
+
338
+ def initialize(businesssecuritydata=nil)
339
+ @BusinessSecurityData = businesssecuritydata
340
+ end
341
+
342
+ def deserialize(params)
343
+ unless params['BusinessSecurityData'].nil?
344
+ @BusinessSecurityData = InputDescribeNameListDetail.new
345
+ @BusinessSecurityData.deserialize(params['BusinessSecurityData'])
346
+ end
347
+ end
348
+ end
349
+
350
+ # DescribeNameListDetail返回参数结构体
351
+ class DescribeNameListDetailResponse < TencentCloud::Common::AbstractModel
352
+ # @param Data: 黑白名单列表详情业务出参
353
+ # @type Data: :class:`Tencentcloud::Rce.v20201103.models.OutputDescribeNameListDetailFront`
354
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
355
+ # @type RequestId: String
356
+
357
+ attr_accessor :Data, :RequestId
358
+
359
+ def initialize(data=nil, requestid=nil)
360
+ @Data = data
361
+ @RequestId = requestid
362
+ end
363
+
364
+ def deserialize(params)
365
+ unless params['Data'].nil?
366
+ @Data = OutputDescribeNameListDetailFront.new
367
+ @Data.deserialize(params['Data'])
368
+ end
369
+ @RequestId = params['RequestId']
370
+ end
371
+ end
372
+
373
+ # DescribeNameList请求参数结构体
374
+ class DescribeNameListRequest < TencentCloud::Common::AbstractModel
375
+ # @param BusinessSecurityData: 业务入参
376
+ # @type BusinessSecurityData: :class:`Tencentcloud::Rce.v20201103.models.InputDescribeNameListFront`
377
+
378
+ attr_accessor :BusinessSecurityData
379
+
380
+ def initialize(businesssecuritydata=nil)
381
+ @BusinessSecurityData = businesssecuritydata
382
+ end
383
+
384
+ def deserialize(params)
385
+ unless params['BusinessSecurityData'].nil?
386
+ @BusinessSecurityData = InputDescribeNameListFront.new
387
+ @BusinessSecurityData.deserialize(params['BusinessSecurityData'])
388
+ end
389
+ end
390
+ end
391
+
392
+ # DescribeNameList返回参数结构体
393
+ class DescribeNameListResponse < TencentCloud::Common::AbstractModel
394
+ # @param Data: 业务出参
395
+ # @type Data: :class:`Tencentcloud::Rce.v20201103.models.OutputDescribeNameListFrontFixListData`
396
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
397
+ # @type RequestId: String
398
+
399
+ attr_accessor :Data, :RequestId
400
+
401
+ def initialize(data=nil, requestid=nil)
402
+ @Data = data
403
+ @RequestId = requestid
404
+ end
405
+
406
+ def deserialize(params)
407
+ unless params['Data'].nil?
408
+ @Data = OutputDescribeNameListFrontFixListData.new
409
+ @Data.deserialize(params['Data'])
410
+ end
411
+ @RequestId = params['RequestId']
412
+ end
413
+ end
414
+
415
+ # ImportNameListData请求参数结构体
416
+ class ImportNameListDataRequest < TencentCloud::Common::AbstractModel
417
+ # @param BusinessSecurityData: 业务入参
418
+ # @type BusinessSecurityData: :class:`Tencentcloud::Rce.v20201103.models.InputImportNameListDataFront`
419
+
420
+ attr_accessor :BusinessSecurityData
421
+
422
+ def initialize(businesssecuritydata=nil)
423
+ @BusinessSecurityData = businesssecuritydata
424
+ end
425
+
426
+ def deserialize(params)
427
+ unless params['BusinessSecurityData'].nil?
428
+ @BusinessSecurityData = InputImportNameListDataFront.new
429
+ @BusinessSecurityData.deserialize(params['BusinessSecurityData'])
430
+ end
431
+ end
432
+ end
433
+
434
+ # ImportNameListData返回参数结构体
435
+ class ImportNameListDataResponse < TencentCloud::Common::AbstractModel
436
+ # @param Data: 业务出参
437
+ # @type Data: :class:`Tencentcloud::Rce.v20201103.models.OutputImportNameListDataFront`
438
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
439
+ # @type RequestId: String
440
+
441
+ attr_accessor :Data, :RequestId
442
+
443
+ def initialize(data=nil, requestid=nil)
444
+ @Data = data
445
+ @RequestId = requestid
446
+ end
447
+
448
+ def deserialize(params)
449
+ unless params['Data'].nil?
450
+ @Data = OutputImportNameListDataFront.new
451
+ @Data.deserialize(params['Data'])
452
+ end
453
+ @RequestId = params['RequestId']
454
+ end
455
+ end
456
+
457
+ # 创建黑白名单入参
458
+ class InputCreateNameListFront < TencentCloud::Common::AbstractModel
459
+ # @param ListName: 名单名称
460
+ # @type ListName: String
461
+ # @param ListType: 名单类型 [1 黑名单 2白名单]
462
+ # @type ListType: Integer
463
+ # @param DataType: 数据类型[1 手机号 2 qqOpenId 3 2echatOpenId 4 ip 6 idfa 7 imei]
464
+ # @type DataType: Integer
465
+ # @param Remark: 描述
466
+ # @type Remark: String
467
+ # @param EncryptionType: 加密类型[0 无需加密 1 MD5加密 2 SHA256加密]
468
+ # @type EncryptionType: Integer
469
+ # @param SceneCode: 场景Code,all_scene代表全部场景
470
+ # @type SceneCode: String
471
+
472
+ attr_accessor :ListName, :ListType, :DataType, :Remark, :EncryptionType, :SceneCode
473
+
474
+ def initialize(listname=nil, listtype=nil, datatype=nil, remark=nil, encryptiontype=nil, scenecode=nil)
475
+ @ListName = listname
476
+ @ListType = listtype
477
+ @DataType = datatype
478
+ @Remark = remark
479
+ @EncryptionType = encryptiontype
480
+ @SceneCode = scenecode
481
+ end
482
+
483
+ def deserialize(params)
484
+ @ListName = params['ListName']
485
+ @ListType = params['ListType']
486
+ @DataType = params['DataType']
487
+ @Remark = params['Remark']
488
+ @EncryptionType = params['EncryptionType']
489
+ @SceneCode = params['SceneCode']
490
+ end
491
+ end
492
+
135
493
  # 全栈式风控引擎入参
136
494
  class InputCryptoManageMarketingRisk < TencentCloud::Common::AbstractModel
137
495
  # @param IsAuthorized: 是否授权:1已授权,否则未授权。
@@ -158,6 +516,122 @@ module TencentCloud
158
516
  end
159
517
  end
160
518
 
519
+ # 删除黑白名单数据业务入参
520
+ class InputDeleteNameListData < TencentCloud::Common::AbstractModel
521
+ # @param NameListDataIdList: 黑白名单数据ID集合
522
+ # @type NameListDataIdList: Array
523
+
524
+ attr_accessor :NameListDataIdList
525
+
526
+ def initialize(namelistdataidlist=nil)
527
+ @NameListDataIdList = namelistdataidlist
528
+ end
529
+
530
+ def deserialize(params)
531
+ @NameListDataIdList = params['NameListDataIdList']
532
+ end
533
+ end
534
+
535
+ # 删除黑白名单入参
536
+ class InputDeleteNameListFront < TencentCloud::Common::AbstractModel
537
+ # @param NameListId: 名单ID
538
+ # @type NameListId: Integer
539
+
540
+ attr_accessor :NameListId
541
+
542
+ def initialize(namelistid=nil)
543
+ @NameListId = namelistid
544
+ end
545
+
546
+ def deserialize(params)
547
+ @NameListId = params['NameListId']
548
+ end
549
+ end
550
+
551
+ # 查询黑白名单数据入参
552
+ class InputDescribeDataListFront < TencentCloud::Common::AbstractModel
553
+ # @param NameListId: 名单ID
554
+ # @type NameListId: Integer
555
+ # @param PageNumber: 当前页数
556
+ # @type PageNumber: Integer
557
+ # @param PageSize: 每页显示条数
558
+ # @type PageSize: Integer
559
+ # @param KeyWord: 搜索关键字,按照名单数据名称或加密名单数据名称搜索
560
+ # @type KeyWord: String
561
+ # @param Status: 黑白名单列表状态[1 启用 2 停用]
562
+ # @type Status: Integer
563
+
564
+ attr_accessor :NameListId, :PageNumber, :PageSize, :KeyWord, :Status
565
+
566
+ def initialize(namelistid=nil, pagenumber=nil, pagesize=nil, keyword=nil, status=nil)
567
+ @NameListId = namelistid
568
+ @PageNumber = pagenumber
569
+ @PageSize = pagesize
570
+ @KeyWord = keyword
571
+ @Status = status
572
+ end
573
+
574
+ def deserialize(params)
575
+ @NameListId = params['NameListId']
576
+ @PageNumber = params['PageNumber']
577
+ @PageSize = params['PageSize']
578
+ @KeyWord = params['KeyWord']
579
+ @Status = params['Status']
580
+ end
581
+ end
582
+
583
+ # 查询黑白名单详情入参
584
+ class InputDescribeNameListDetail < TencentCloud::Common::AbstractModel
585
+ # @param NameListId: 名单ID
586
+ # @type NameListId: Integer
587
+
588
+ attr_accessor :NameListId
589
+
590
+ def initialize(namelistid=nil)
591
+ @NameListId = namelistid
592
+ end
593
+
594
+ def deserialize(params)
595
+ @NameListId = params['NameListId']
596
+ end
597
+ end
598
+
599
+ # 查询黑白名单入参
600
+ class InputDescribeNameListFront < TencentCloud::Common::AbstractModel
601
+ # @param PageNumber: 当前页数
602
+ # @type PageNumber: Integer
603
+ # @param PageSize: 每页显示条数
604
+ # @type PageSize: Integer
605
+ # @param ListType: 名单类型 [1 黑名单 2 白名单]
606
+ # @type ListType: Integer
607
+ # @param DataType: 数据类型[1 手机号 2 qqOpenId 3 wechatOpenId 4 ip 6 idfa 7 imei]
608
+ # @type DataType: Integer
609
+ # @param KeyWord: 关键字,按照名单名称搜索
610
+ # @type KeyWord: String
611
+ # @param Status: 记录状态[1 启用 2 停用]
612
+ # @type Status: Integer
613
+
614
+ attr_accessor :PageNumber, :PageSize, :ListType, :DataType, :KeyWord, :Status
615
+
616
+ def initialize(pagenumber=nil, pagesize=nil, listtype=nil, datatype=nil, keyword=nil, status=nil)
617
+ @PageNumber = pagenumber
618
+ @PageSize = pagesize
619
+ @ListType = listtype
620
+ @DataType = datatype
621
+ @KeyWord = keyword
622
+ @Status = status
623
+ end
624
+
625
+ def deserialize(params)
626
+ @PageNumber = params['PageNumber']
627
+ @PageSize = params['PageSize']
628
+ @ListType = params['ListType']
629
+ @DataType = params['DataType']
630
+ @KeyWord = params['KeyWord']
631
+ @Status = params['Status']
632
+ end
633
+ end
634
+
161
635
  # 入参的详细参数信息
162
636
  class InputDetails < TencentCloud::Common::AbstractModel
163
637
  # @param FieldName: 字段名称
@@ -178,6 +652,37 @@ module TencentCloud
178
652
  end
179
653
  end
180
654
 
655
+ # 添加名单数据入参
656
+ class InputImportNameListDataFront < TencentCloud::Common::AbstractModel
657
+ # @param NameListId: 名单ID
658
+ # @type NameListId: Integer
659
+ # @param DataSource: 数据来源,固定传2(手工录入)
660
+ # @type DataSource: Integer
661
+ # @param DataContentInfo: 黑白名单数据内容
662
+ # @type DataContentInfo: Array
663
+
664
+ attr_accessor :NameListId, :DataSource, :DataContentInfo
665
+
666
+ def initialize(namelistid=nil, datasource=nil, datacontentinfo=nil)
667
+ @NameListId = namelistid
668
+ @DataSource = datasource
669
+ @DataContentInfo = datacontentinfo
670
+ end
671
+
672
+ def deserialize(params)
673
+ @NameListId = params['NameListId']
674
+ @DataSource = params['DataSource']
675
+ unless params['DataContentInfo'].nil?
676
+ @DataContentInfo = []
677
+ params['DataContentInfo'].each do |i|
678
+ datacontentinfo_tmp = DataContentInfo.new
679
+ datacontentinfo_tmp.deserialize(i)
680
+ @DataContentInfo << datacontentinfo_tmp
681
+ end
682
+ end
683
+ end
684
+ end
685
+
181
686
  # 全栈式风控引擎入参
182
687
  class InputManageMarketingRisk < TencentCloud::Common::AbstractModel
183
688
  # @param Account: 用户账号类型;默认开通QQOpenId、手机号MD5权限;如果需要使用微信OpenId入参,则需要"提交工单"或联系对接人进行资格审核,审核通过后方可正常使用微信开放账号。
@@ -314,36 +819,207 @@ module TencentCloud
314
819
  end
315
820
  end
316
821
 
317
- # ManageMarketingRisk请求参数结构体
318
- class ManageMarketingRiskRequest < TencentCloud::Common::AbstractModel
822
+ # 修改黑白名单入参
823
+ class InputModifyNameFront < TencentCloud::Common::AbstractModel
824
+ # @param NameListId: 名单ID
825
+ # @type NameListId: Integer
826
+ # @param ListName: 名单名称
827
+ # @type ListName: String
828
+ # @param Status: 名单状态 [1 启用 2 停用]
829
+ # @type Status: Integer
830
+ # @param Remark: 描述
831
+ # @type Remark: String
832
+
833
+ attr_accessor :NameListId, :ListName, :Status, :Remark
834
+
835
+ def initialize(namelistid=nil, listname=nil, status=nil, remark=nil)
836
+ @NameListId = namelistid
837
+ @ListName = listname
838
+ @Status = status
839
+ @Remark = remark
840
+ end
841
+
842
+ def deserialize(params)
843
+ @NameListId = params['NameListId']
844
+ @ListName = params['ListName']
845
+ @Status = params['Status']
846
+ @Remark = params['Remark']
847
+ end
848
+ end
849
+
850
+ # 名单数据集合
851
+ class InputModifyNameListDataFront < TencentCloud::Common::AbstractModel
852
+ # @param NameListDataId: 名单数据ID
853
+ # @type NameListDataId: Integer
854
+ # @param DataContent: 名单数据内容
855
+ # @type DataContent: String
856
+ # @param StartTime: 名单数据开始时间,时间格式示例"2024-05-05 12:10:15"
857
+ # @type StartTime: String
858
+ # @param EndTime: 名单数据结束时间,时间格式示例"2024-05-05 12:10:15"
859
+ # @type EndTime: String
860
+ # @param Status: 记录状态 [1 启用 2 停用]
861
+ # @type Status: Integer
862
+ # @param Remark: 名单数据描述
863
+ # @type Remark: String
864
+
865
+ attr_accessor :NameListDataId, :DataContent, :StartTime, :EndTime, :Status, :Remark
866
+
867
+ def initialize(namelistdataid=nil, datacontent=nil, starttime=nil, endtime=nil, status=nil, remark=nil)
868
+ @NameListDataId = namelistdataid
869
+ @DataContent = datacontent
870
+ @StartTime = starttime
871
+ @EndTime = endtime
872
+ @Status = status
873
+ @Remark = remark
874
+ end
875
+
876
+ def deserialize(params)
877
+ @NameListDataId = params['NameListDataId']
878
+ @DataContent = params['DataContent']
879
+ @StartTime = params['StartTime']
880
+ @EndTime = params['EndTime']
881
+ @Status = params['Status']
882
+ @Remark = params['Remark']
883
+ end
884
+ end
885
+
886
+ # 修改黑白名单数据入参
887
+ class InputModifyNameListDataFrontListData < TencentCloud::Common::AbstractModel
888
+ # @param DataList: 名单数据集合
889
+ # @type DataList: Array
890
+
891
+ attr_accessor :DataList
892
+
893
+ def initialize(datalist=nil)
894
+ @DataList = datalist
895
+ end
896
+
897
+ def deserialize(params)
898
+ unless params['DataList'].nil?
899
+ @DataList = []
900
+ params['DataList'].each do |i|
901
+ inputmodifynamelistdatafront_tmp = InputModifyNameListDataFront.new
902
+ inputmodifynamelistdatafront_tmp.deserialize(i)
903
+ @DataList << inputmodifynamelistdatafront_tmp
904
+ end
905
+ end
906
+ end
907
+ end
908
+
909
+ # ManageMarketingRisk请求参数结构体
910
+ class ManageMarketingRiskRequest < TencentCloud::Common::AbstractModel
911
+ # @param BusinessSecurityData: 业务入参
912
+ # @type BusinessSecurityData: :class:`Tencentcloud::Rce.v20201103.models.InputManageMarketingRisk`
913
+ # @param BusinessCryptoData: 业务入参
914
+ # @type BusinessCryptoData: :class:`Tencentcloud::Rce.v20201103.models.InputCryptoManageMarketingRisk`
915
+
916
+ attr_accessor :BusinessSecurityData, :BusinessCryptoData
917
+
918
+ def initialize(businesssecuritydata=nil, businesscryptodata=nil)
919
+ @BusinessSecurityData = businesssecuritydata
920
+ @BusinessCryptoData = businesscryptodata
921
+ end
922
+
923
+ def deserialize(params)
924
+ unless params['BusinessSecurityData'].nil?
925
+ @BusinessSecurityData = InputManageMarketingRisk.new
926
+ @BusinessSecurityData.deserialize(params['BusinessSecurityData'])
927
+ end
928
+ unless params['BusinessCryptoData'].nil?
929
+ @BusinessCryptoData = InputCryptoManageMarketingRisk.new
930
+ @BusinessCryptoData.deserialize(params['BusinessCryptoData'])
931
+ end
932
+ end
933
+ end
934
+
935
+ # ManageMarketingRisk返回参数结构体
936
+ class ManageMarketingRiskResponse < TencentCloud::Common::AbstractModel
937
+ # @param Data: 业务出参
938
+ # @type Data: :class:`Tencentcloud::Rce.v20201103.models.OutputManageMarketingRisk`
939
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
940
+ # @type RequestId: String
941
+
942
+ attr_accessor :Data, :RequestId
943
+
944
+ def initialize(data=nil, requestid=nil)
945
+ @Data = data
946
+ @RequestId = requestid
947
+ end
948
+
949
+ def deserialize(params)
950
+ unless params['Data'].nil?
951
+ @Data = OutputManageMarketingRisk.new
952
+ @Data.deserialize(params['Data'])
953
+ end
954
+ @RequestId = params['RequestId']
955
+ end
956
+ end
957
+
958
+ # ModifyNameListData请求参数结构体
959
+ class ModifyNameListDataRequest < TencentCloud::Common::AbstractModel
960
+ # @param BusinessSecurityData: 业务入参
961
+ # @type BusinessSecurityData: :class:`Tencentcloud::Rce.v20201103.models.InputModifyNameListDataFrontListData`
962
+
963
+ attr_accessor :BusinessSecurityData
964
+
965
+ def initialize(businesssecuritydata=nil)
966
+ @BusinessSecurityData = businesssecuritydata
967
+ end
968
+
969
+ def deserialize(params)
970
+ unless params['BusinessSecurityData'].nil?
971
+ @BusinessSecurityData = InputModifyNameListDataFrontListData.new
972
+ @BusinessSecurityData.deserialize(params['BusinessSecurityData'])
973
+ end
974
+ end
975
+ end
976
+
977
+ # ModifyNameListData返回参数结构体
978
+ class ModifyNameListDataResponse < TencentCloud::Common::AbstractModel
979
+ # @param Data: 业务出参
980
+ # @type Data: :class:`Tencentcloud::Rce.v20201103.models.OutputModifyNameListFront`
981
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
982
+ # @type RequestId: String
983
+
984
+ attr_accessor :Data, :RequestId
985
+
986
+ def initialize(data=nil, requestid=nil)
987
+ @Data = data
988
+ @RequestId = requestid
989
+ end
990
+
991
+ def deserialize(params)
992
+ unless params['Data'].nil?
993
+ @Data = OutputModifyNameListFront.new
994
+ @Data.deserialize(params['Data'])
995
+ end
996
+ @RequestId = params['RequestId']
997
+ end
998
+ end
999
+
1000
+ # ModifyNameList请求参数结构体
1001
+ class ModifyNameListRequest < TencentCloud::Common::AbstractModel
319
1002
  # @param BusinessSecurityData: 业务入参
320
- # @type BusinessSecurityData: :class:`Tencentcloud::Rce.v20201103.models.InputManageMarketingRisk`
321
- # @param BusinessCryptoData: 业务入参
322
- # @type BusinessCryptoData: :class:`Tencentcloud::Rce.v20201103.models.InputCryptoManageMarketingRisk`
1003
+ # @type BusinessSecurityData: :class:`Tencentcloud::Rce.v20201103.models.InputModifyNameFront`
323
1004
 
324
- attr_accessor :BusinessSecurityData, :BusinessCryptoData
1005
+ attr_accessor :BusinessSecurityData
325
1006
 
326
- def initialize(businesssecuritydata=nil, businesscryptodata=nil)
1007
+ def initialize(businesssecuritydata=nil)
327
1008
  @BusinessSecurityData = businesssecuritydata
328
- @BusinessCryptoData = businesscryptodata
329
1009
  end
330
1010
 
331
1011
  def deserialize(params)
332
1012
  unless params['BusinessSecurityData'].nil?
333
- @BusinessSecurityData = InputManageMarketingRisk.new
1013
+ @BusinessSecurityData = InputModifyNameFront.new
334
1014
  @BusinessSecurityData.deserialize(params['BusinessSecurityData'])
335
1015
  end
336
- unless params['BusinessCryptoData'].nil?
337
- @BusinessCryptoData = InputCryptoManageMarketingRisk.new
338
- @BusinessCryptoData.deserialize(params['BusinessCryptoData'])
339
- end
340
1016
  end
341
1017
  end
342
1018
 
343
- # ManageMarketingRisk返回参数结构体
344
- class ManageMarketingRiskResponse < TencentCloud::Common::AbstractModel
1019
+ # ModifyNameList返回参数结构体
1020
+ class ModifyNameListResponse < TencentCloud::Common::AbstractModel
345
1021
  # @param Data: 业务出参
346
- # @type Data: :class:`Tencentcloud::Rce.v20201103.models.OutputManageMarketingRisk`
1022
+ # @type Data: :class:`Tencentcloud::Rce.v20201103.models.OutputModifyNameFront`
347
1023
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
348
1024
  # @type RequestId: String
349
1025
 
@@ -356,7 +1032,7 @@ module TencentCloud
356
1032
 
357
1033
  def deserialize(params)
358
1034
  unless params['Data'].nil?
359
- @Data = OutputManageMarketingRisk.new
1035
+ @Data = OutputModifyNameFront.new
360
1036
  @Data.deserialize(params['Data'])
361
1037
  end
362
1038
  @RequestId = params['RequestId']
@@ -430,6 +1106,440 @@ module TencentCloud
430
1106
  end
431
1107
  end
432
1108
 
1109
+ # 黑白名单数据列表信息
1110
+ class OuntputDescribeDataListInfo < TencentCloud::Common::AbstractModel
1111
+ # @param Count: 数量
1112
+ # 注意:此字段可能返回 null,表示取不到有效值。
1113
+ # @type Count: Integer
1114
+ # @param List: 列表
1115
+ # 注意:此字段可能返回 null,表示取不到有效值。
1116
+ # @type List: Array
1117
+
1118
+ attr_accessor :Count, :List
1119
+
1120
+ def initialize(count=nil, list=nil)
1121
+ @Count = count
1122
+ @List = list
1123
+ end
1124
+
1125
+ def deserialize(params)
1126
+ @Count = params['Count']
1127
+ unless params['List'].nil?
1128
+ @List = []
1129
+ params['List'].each do |i|
1130
+ outputdescribedatalistfront_tmp = OutputDescribeDataListFront.new
1131
+ outputdescribedatalistfront_tmp.deserialize(i)
1132
+ @List << outputdescribedatalistfront_tmp
1133
+ end
1134
+ end
1135
+ end
1136
+ end
1137
+
1138
+ # 创建黑白名单出参
1139
+ class OutputCreateNameListFront < TencentCloud::Common::AbstractModel
1140
+ # @param Code: 错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000:系统内部错误
1141
+ # @type Code: Integer
1142
+ # @param Message: 错误信息
1143
+ # @type Message: String
1144
+ # @param Value: 空数组
1145
+ # 注意:此字段可能返回 null,表示取不到有效值。
1146
+ # @type Value: Array
1147
+
1148
+ attr_accessor :Code, :Message, :Value
1149
+
1150
+ def initialize(code=nil, message=nil, value=nil)
1151
+ @Code = code
1152
+ @Message = message
1153
+ @Value = value
1154
+ end
1155
+
1156
+ def deserialize(params)
1157
+ @Code = params['Code']
1158
+ @Message = params['Message']
1159
+ @Value = params['Value']
1160
+ end
1161
+ end
1162
+
1163
+ # 删除黑白名单出参
1164
+ class OutputDeleteNameListData < TencentCloud::Common::AbstractModel
1165
+ # @param Code: 错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000:系统内部错误
1166
+ # 注意:此字段可能返回 null,表示取不到有效值。
1167
+ # @type Code: Integer
1168
+ # @param Message: 错误信息
1169
+ # 注意:此字段可能返回 null,表示取不到有效值。
1170
+ # @type Message: String
1171
+ # @param Value: 空数组
1172
+ # 注意:此字段可能返回 null,表示取不到有效值。
1173
+ # @type Value: Array
1174
+
1175
+ attr_accessor :Code, :Message, :Value
1176
+
1177
+ def initialize(code=nil, message=nil, value=nil)
1178
+ @Code = code
1179
+ @Message = message
1180
+ @Value = value
1181
+ end
1182
+
1183
+ def deserialize(params)
1184
+ @Code = params['Code']
1185
+ @Message = params['Message']
1186
+ @Value = params['Value']
1187
+ end
1188
+ end
1189
+
1190
+ # 删除黑白名单出参
1191
+ class OutputDeleteNameListFront < TencentCloud::Common::AbstractModel
1192
+ # @param Code: 错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000:系统内部错误
1193
+ # @type Code: Integer
1194
+ # @param Message: 错误信息
1195
+ # @type Message: String
1196
+ # @param Value: 空数组
1197
+ # 注意:此字段可能返回 null,表示取不到有效值。
1198
+ # @type Value: Array
1199
+
1200
+ attr_accessor :Code, :Message, :Value
1201
+
1202
+ def initialize(code=nil, message=nil, value=nil)
1203
+ @Code = code
1204
+ @Message = message
1205
+ @Value = value
1206
+ end
1207
+
1208
+ def deserialize(params)
1209
+ @Code = params['Code']
1210
+ @Message = params['Message']
1211
+ @Value = params['Value']
1212
+ end
1213
+ end
1214
+
1215
+ # 黑白名单数据信息
1216
+ class OutputDescribeDataListFront < TencentCloud::Common::AbstractModel
1217
+ # @param NameListDataId: 名单数据ID
1218
+ # @type NameListDataId: Integer
1219
+ # @param NameListId: 名单ID
1220
+ # @type NameListId: Integer
1221
+ # @param DataContent: 名单数据内容
1222
+ # @type DataContent: String
1223
+ # @param DataSource: 数据来源,固定传2(手工录入)
1224
+ # @type DataSource: Integer
1225
+ # @param StartTime: 名单数据开始时间,时间格式示例"2024-05-05 12:10:15"
1226
+ # 注意:此字段可能返回 null,表示取不到有效值。
1227
+ # @type StartTime: String
1228
+ # @param EndTime: 名单数据结束时间,时间格式示例"2024-05-05 12:10:15"
1229
+ # 注意:此字段可能返回 null,表示取不到有效值。
1230
+ # @type EndTime: String
1231
+ # @param Status: 名单数据状态 [1 启用 2 停用]
1232
+ # @type Status: Integer
1233
+ # @param Remark: 名单数据描述
1234
+ # 注意:此字段可能返回 null,表示取不到有效值。
1235
+ # @type Remark: String
1236
+ # @param CreateTime: 名单数据创建时间,时间格式示例"2024-05-05 12:10:15"
1237
+ # @type CreateTime: String
1238
+ # @param UpdateTime: 名单数据更新时间,时间格式示例"2024-05-05 12:10:15"
1239
+ # @type UpdateTime: String
1240
+ # @param EncryptDataContent: 加密名单数据内容
1241
+ # 注意:此字段可能返回 null,表示取不到有效值。
1242
+ # @type EncryptDataContent: String
1243
+
1244
+ attr_accessor :NameListDataId, :NameListId, :DataContent, :DataSource, :StartTime, :EndTime, :Status, :Remark, :CreateTime, :UpdateTime, :EncryptDataContent
1245
+
1246
+ def initialize(namelistdataid=nil, namelistid=nil, datacontent=nil, datasource=nil, starttime=nil, endtime=nil, status=nil, remark=nil, createtime=nil, updatetime=nil, encryptdatacontent=nil)
1247
+ @NameListDataId = namelistdataid
1248
+ @NameListId = namelistid
1249
+ @DataContent = datacontent
1250
+ @DataSource = datasource
1251
+ @StartTime = starttime
1252
+ @EndTime = endtime
1253
+ @Status = status
1254
+ @Remark = remark
1255
+ @CreateTime = createtime
1256
+ @UpdateTime = updatetime
1257
+ @EncryptDataContent = encryptdatacontent
1258
+ end
1259
+
1260
+ def deserialize(params)
1261
+ @NameListDataId = params['NameListDataId']
1262
+ @NameListId = params['NameListId']
1263
+ @DataContent = params['DataContent']
1264
+ @DataSource = params['DataSource']
1265
+ @StartTime = params['StartTime']
1266
+ @EndTime = params['EndTime']
1267
+ @Status = params['Status']
1268
+ @Remark = params['Remark']
1269
+ @CreateTime = params['CreateTime']
1270
+ @UpdateTime = params['UpdateTime']
1271
+ @EncryptDataContent = params['EncryptDataContent']
1272
+ end
1273
+ end
1274
+
1275
+ # 查询黑白名单数据出参
1276
+ class OutputDescribeDataListFrontData < TencentCloud::Common::AbstractModel
1277
+ # @param Code: 错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000:系统内部错误
1278
+ # 注意:此字段可能返回 null,表示取不到有效值。
1279
+ # @type Code: Integer
1280
+ # @param Message: 错误信息
1281
+ # 注意:此字段可能返回 null,表示取不到有效值。
1282
+ # @type Message: String
1283
+ # @param Value: 黑白名单数据信息
1284
+ # 注意:此字段可能返回 null,表示取不到有效值。
1285
+ # @type Value: :class:`Tencentcloud::Rce.v20201103.models.OuntputDescribeDataListInfo`
1286
+
1287
+ attr_accessor :Code, :Message, :Value
1288
+
1289
+ def initialize(code=nil, message=nil, value=nil)
1290
+ @Code = code
1291
+ @Message = message
1292
+ @Value = value
1293
+ end
1294
+
1295
+ def deserialize(params)
1296
+ @Code = params['Code']
1297
+ @Message = params['Message']
1298
+ unless params['Value'].nil?
1299
+ @Value = OuntputDescribeDataListInfo.new
1300
+ @Value.deserialize(params['Value'])
1301
+ end
1302
+ end
1303
+ end
1304
+
1305
+ # 黑白名单详情出参
1306
+ class OutputDescribeNameListDetail < TencentCloud::Common::AbstractModel
1307
+ # @param NameListId: 名单ID
1308
+ # 注意:此字段可能返回 null,表示取不到有效值。
1309
+ # @type NameListId: Integer
1310
+ # @param ListName: 名单名称
1311
+ # 注意:此字段可能返回 null,表示取不到有效值。
1312
+ # @type ListName: String
1313
+ # @param ListType: 名单类型 [1 黑名单 2 白名单]
1314
+ # 注意:此字段可能返回 null,表示取不到有效值。
1315
+ # @type ListType: Integer
1316
+ # @param DataType: 数据类型[1 手机号 2 qqOpenId 3 2echatOpenId 4 ip 6 idfa 7 imei]
1317
+ # 注意:此字段可能返回 null,表示取不到有效值。
1318
+ # @type DataType: Integer
1319
+ # @param SceneCode: 场景Code
1320
+ # 注意:此字段可能返回 null,表示取不到有效值。
1321
+ # @type SceneCode: String
1322
+ # @param Status: 名单列表状态 [1 启用 2 停用]
1323
+ # 注意:此字段可能返回 null,表示取不到有效值。
1324
+ # @type Status: Integer
1325
+ # @param Remark: 描述
1326
+ # 注意:此字段可能返回 null,表示取不到有效值。
1327
+ # @type Remark: String
1328
+ # @param CreateTime: 创建时间,时间格式示例"2024-05-05 12:10:15"
1329
+ # 注意:此字段可能返回 null,表示取不到有效值。
1330
+ # @type CreateTime: String
1331
+ # @param UpdateTime: 更新时间,时间格式示例"2024-05-05 12:10:15"
1332
+ # 注意:此字段可能返回 null,表示取不到有效值。
1333
+ # @type UpdateTime: String
1334
+ # @param EncryptionType: 加密类型 [0 无需加密,1 MD5加密,2 SHA256加密]
1335
+ # 注意:此字段可能返回 null,表示取不到有效值。
1336
+ # @type EncryptionType: Integer
1337
+
1338
+ attr_accessor :NameListId, :ListName, :ListType, :DataType, :SceneCode, :Status, :Remark, :CreateTime, :UpdateTime, :EncryptionType
1339
+
1340
+ def initialize(namelistid=nil, listname=nil, listtype=nil, datatype=nil, scenecode=nil, status=nil, remark=nil, createtime=nil, updatetime=nil, encryptiontype=nil)
1341
+ @NameListId = namelistid
1342
+ @ListName = listname
1343
+ @ListType = listtype
1344
+ @DataType = datatype
1345
+ @SceneCode = scenecode
1346
+ @Status = status
1347
+ @Remark = remark
1348
+ @CreateTime = createtime
1349
+ @UpdateTime = updatetime
1350
+ @EncryptionType = encryptiontype
1351
+ end
1352
+
1353
+ def deserialize(params)
1354
+ @NameListId = params['NameListId']
1355
+ @ListName = params['ListName']
1356
+ @ListType = params['ListType']
1357
+ @DataType = params['DataType']
1358
+ @SceneCode = params['SceneCode']
1359
+ @Status = params['Status']
1360
+ @Remark = params['Remark']
1361
+ @CreateTime = params['CreateTime']
1362
+ @UpdateTime = params['UpdateTime']
1363
+ @EncryptionType = params['EncryptionType']
1364
+ end
1365
+ end
1366
+
1367
+ # 查询列表详情出参
1368
+ class OutputDescribeNameListDetailFront < TencentCloud::Common::AbstractModel
1369
+ # @param Code: 错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000:系统内部错误
1370
+ # 注意:此字段可能返回 null,表示取不到有效值。
1371
+ # @type Code: Integer
1372
+ # @param Message: 错误信息
1373
+ # 注意:此字段可能返回 null,表示取不到有效值。
1374
+ # @type Message: String
1375
+ # @param Value: 列表详情信息
1376
+ # 注意:此字段可能返回 null,表示取不到有效值。
1377
+ # @type Value: :class:`Tencentcloud::Rce.v20201103.models.OutputDescribeNameListDetail`
1378
+
1379
+ attr_accessor :Code, :Message, :Value
1380
+
1381
+ def initialize(code=nil, message=nil, value=nil)
1382
+ @Code = code
1383
+ @Message = message
1384
+ @Value = value
1385
+ end
1386
+
1387
+ def deserialize(params)
1388
+ @Code = params['Code']
1389
+ @Message = params['Message']
1390
+ unless params['Value'].nil?
1391
+ @Value = OutputDescribeNameListDetail.new
1392
+ @Value.deserialize(params['Value'])
1393
+ end
1394
+ end
1395
+ end
1396
+
1397
+ # 黑白名单信息
1398
+ class OutputDescribeNameListFrontFix < TencentCloud::Common::AbstractModel
1399
+ # @param NameListId: 名单ID
1400
+ # @type NameListId: Integer
1401
+ # @param ListName: 名单名称
1402
+ # 注意:此字段可能返回 null,表示取不到有效值。
1403
+ # @type ListName: String
1404
+ # @param ListType: 名单类型 [1 黑名单 2 白名单]
1405
+ # 注意:此字段可能返回 null,表示取不到有效值。
1406
+ # @type ListType: Integer
1407
+ # @param DataType: 数据类型[1 手机号 2 qqOpenId 3 2echatOpenId 4 ip 6 idfa 7 imei]
1408
+ # @type DataType: Integer
1409
+ # @param Status: 记录状态 [1 启用 2 停用]
1410
+ # @type Status: Integer
1411
+ # @param Remark: 描述
1412
+ # 注意:此字段可能返回 null,表示取不到有效值。
1413
+ # @type Remark: String
1414
+ # @param CreateTime: 创建时间,时间格式示例"2024-05-05 12:10:15"
1415
+ # @type CreateTime: String
1416
+ # @param UpdateTime: 更新时间,时间格式示例"2024-05-05 12:10:15"
1417
+ # @type UpdateTime: String
1418
+ # @param EffectCount: 有效数据/数据总数
1419
+ # @type EffectCount: String
1420
+ # @param EncryptionType: 加密类型[0 无需加密 1 MD5加密 2 SHA256加密]
1421
+ # 注意:此字段可能返回 null,表示取不到有效值。
1422
+ # @type EncryptionType: Integer
1423
+ # @param SceneCode: 场景Code,all_scene代表全部场景
1424
+ # 注意:此字段可能返回 null,表示取不到有效值。
1425
+ # @type SceneCode: String
1426
+
1427
+ attr_accessor :NameListId, :ListName, :ListType, :DataType, :Status, :Remark, :CreateTime, :UpdateTime, :EffectCount, :EncryptionType, :SceneCode
1428
+
1429
+ def initialize(namelistid=nil, listname=nil, listtype=nil, datatype=nil, status=nil, remark=nil, createtime=nil, updatetime=nil, effectcount=nil, encryptiontype=nil, scenecode=nil)
1430
+ @NameListId = namelistid
1431
+ @ListName = listname
1432
+ @ListType = listtype
1433
+ @DataType = datatype
1434
+ @Status = status
1435
+ @Remark = remark
1436
+ @CreateTime = createtime
1437
+ @UpdateTime = updatetime
1438
+ @EffectCount = effectcount
1439
+ @EncryptionType = encryptiontype
1440
+ @SceneCode = scenecode
1441
+ end
1442
+
1443
+ def deserialize(params)
1444
+ @NameListId = params['NameListId']
1445
+ @ListName = params['ListName']
1446
+ @ListType = params['ListType']
1447
+ @DataType = params['DataType']
1448
+ @Status = params['Status']
1449
+ @Remark = params['Remark']
1450
+ @CreateTime = params['CreateTime']
1451
+ @UpdateTime = params['UpdateTime']
1452
+ @EffectCount = params['EffectCount']
1453
+ @EncryptionType = params['EncryptionType']
1454
+ @SceneCode = params['SceneCode']
1455
+ end
1456
+ end
1457
+
1458
+ # 查询黑白名单出参
1459
+ class OutputDescribeNameListFrontFixListData < TencentCloud::Common::AbstractModel
1460
+ # @param Code: 错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000:系统内部错误
1461
+
1462
+ # 注意:此字段可能返回 null,表示取不到有效值。
1463
+ # @type Code: Integer
1464
+ # @param Message: 错误信息
1465
+ # 注意:此字段可能返回 null,表示取不到有效值。
1466
+ # @type Message: String
1467
+ # @param Value: 黑白名单列表信息
1468
+ # 注意:此字段可能返回 null,表示取不到有效值。
1469
+ # @type Value: :class:`Tencentcloud::Rce.v20201103.models.OutputDescribeNameListInfo`
1470
+
1471
+ attr_accessor :Code, :Message, :Value
1472
+
1473
+ def initialize(code=nil, message=nil, value=nil)
1474
+ @Code = code
1475
+ @Message = message
1476
+ @Value = value
1477
+ end
1478
+
1479
+ def deserialize(params)
1480
+ @Code = params['Code']
1481
+ @Message = params['Message']
1482
+ unless params['Value'].nil?
1483
+ @Value = OutputDescribeNameListInfo.new
1484
+ @Value.deserialize(params['Value'])
1485
+ end
1486
+ end
1487
+ end
1488
+
1489
+ # 黑白名单信息
1490
+ class OutputDescribeNameListInfo < TencentCloud::Common::AbstractModel
1491
+ # @param Count: 总数
1492
+ # 注意:此字段可能返回 null,表示取不到有效值。
1493
+ # @type Count: Integer
1494
+ # @param List: 列表
1495
+ # 注意:此字段可能返回 null,表示取不到有效值。
1496
+ # @type List: Array
1497
+
1498
+ attr_accessor :Count, :List
1499
+
1500
+ def initialize(count=nil, list=nil)
1501
+ @Count = count
1502
+ @List = list
1503
+ end
1504
+
1505
+ def deserialize(params)
1506
+ @Count = params['Count']
1507
+ unless params['List'].nil?
1508
+ @List = []
1509
+ params['List'].each do |i|
1510
+ outputdescribenamelistfrontfix_tmp = OutputDescribeNameListFrontFix.new
1511
+ outputdescribenamelistfrontfix_tmp.deserialize(i)
1512
+ @List << outputdescribenamelistfrontfix_tmp
1513
+ end
1514
+ end
1515
+ end
1516
+ end
1517
+
1518
+ # 添加黑白名单数据出参
1519
+ class OutputImportNameListDataFront < TencentCloud::Common::AbstractModel
1520
+ # @param Code: 错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000:系统内部错误
1521
+ # @type Code: Integer
1522
+ # @param Message: 错误信息
1523
+ # @type Message: String
1524
+ # @param Value: 空数组
1525
+ # 注意:此字段可能返回 null,表示取不到有效值。
1526
+ # @type Value: Array
1527
+
1528
+ attr_accessor :Code, :Message, :Value
1529
+
1530
+ def initialize(code=nil, message=nil, value=nil)
1531
+ @Code = code
1532
+ @Message = message
1533
+ @Value = value
1534
+ end
1535
+
1536
+ def deserialize(params)
1537
+ @Code = params['Code']
1538
+ @Message = params['Message']
1539
+ @Value = params['Value']
1540
+ end
1541
+ end
1542
+
433
1543
  # 全栈式风控引擎出参
434
1544
  class OutputManageMarketingRisk < TencentCloud::Common::AbstractModel
435
1545
  # @param Code: 错误码,0 表示成功,非0表示失败错误码。
@@ -547,6 +1657,56 @@ module TencentCloud
547
1657
  end
548
1658
  end
549
1659
 
1660
+ # 修改黑白名单出参
1661
+ class OutputModifyNameFront < TencentCloud::Common::AbstractModel
1662
+ # @param Code: 错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000:系统内部错误
1663
+ # @type Code: Integer
1664
+ # @param Message: 错误信息
1665
+ # @type Message: String
1666
+ # @param Value: 空数组
1667
+ # 注意:此字段可能返回 null,表示取不到有效值。
1668
+ # @type Value: Array
1669
+
1670
+ attr_accessor :Code, :Message, :Value
1671
+
1672
+ def initialize(code=nil, message=nil, value=nil)
1673
+ @Code = code
1674
+ @Message = message
1675
+ @Value = value
1676
+ end
1677
+
1678
+ def deserialize(params)
1679
+ @Code = params['Code']
1680
+ @Message = params['Message']
1681
+ @Value = params['Value']
1682
+ end
1683
+ end
1684
+
1685
+ # 修改黑白名单数据出参
1686
+ class OutputModifyNameListFront < TencentCloud::Common::AbstractModel
1687
+ # @param Code: 错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000:系统内部错误
1688
+ # @type Code: Integer
1689
+ # @param Message: 错误信息
1690
+ # @type Message: String
1691
+ # @param Value: 空数组
1692
+ # 注意:此字段可能返回 null,表示取不到有效值。
1693
+ # @type Value: Array
1694
+
1695
+ attr_accessor :Code, :Message, :Value
1696
+
1697
+ def initialize(code=nil, message=nil, value=nil)
1698
+ @Code = code
1699
+ @Message = message
1700
+ @Value = value
1701
+ end
1702
+
1703
+ def deserialize(params)
1704
+ @Code = params['Code']
1705
+ @Message = params['Message']
1706
+ @Value = params['Value']
1707
+ end
1708
+ end
1709
+
550
1710
  # QQ账号信息。
551
1711
  class QQAccountInfo < TencentCloud::Common::AbstractModel
552
1712
  # @param QQOpenId: QQ的OpenId。