75 lines
3.4 KiB
C#
75 lines
3.4 KiB
C#
|
|
/*
|
|||
|
|
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
|
|||
|
|
*
|
|||
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|||
|
|
* you may not use this file except in compliance with the License.
|
|||
|
|
* You may obtain a copy of the License at
|
|||
|
|
*
|
|||
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|||
|
|
*
|
|||
|
|
* Unless required by applicable law or agreed to in writing,
|
|||
|
|
* software distributed under the License is distributed on an
|
|||
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|||
|
|
* KIND, either express or implied. See the License for the
|
|||
|
|
* specific language governing permissions and limitations
|
|||
|
|
* under the License.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
namespace TencentCloud.Bri.V20190328.Models
|
|||
|
|
{
|
|||
|
|
using Newtonsoft.Json;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using TencentCloud.Common;
|
|||
|
|
|
|||
|
|
public class BRIResponse : AbstractModel
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 风险分值,取值[0,100], 分值越高风险越高
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("Score")]
|
|||
|
|
public float? Score{ get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当Service为bri_num时,返回的风险标签有:
|
|||
|
|
/// 1) 疑似垃圾流量 说明: 结合号码的历史数据表现,判断该号码历史用互联网业务作恶行为,其产生的互联网行为对于其他业务来说属于作弊或垃圾流量。
|
|||
|
|
/// 2) 疑似新客户 说明: 通过号码互联网行为(社交,浏览等)是否异常判断为小号或接码平台帐号。
|
|||
|
|
///
|
|||
|
|
/// 当Service为bri_dev时,返回的风险标签有:
|
|||
|
|
/// 1) 疑似真机假用户 说明: 根据设备的一些数据表现,我们判定为群控设备
|
|||
|
|
/// 2) 疑似假机 说明: 根据设备的一些数据表现,我们判定为模拟器或虚假设备ID
|
|||
|
|
/// 3) 疑似真用户假行为 说明: 根据设备的用户使用情况,我们判定该用户存在使用脚本、外挂、病毒等作弊行为
|
|||
|
|
///
|
|||
|
|
/// 当Service为bri_ip时,返回的风险标签有:
|
|||
|
|
/// 1) 疑似垃圾流量 说明:结合IP的历史数据表现,判断该IP历史用互联网业务作恶行为,其产生的互联网行为对于其他业务来说属于作弊或垃圾流量。
|
|||
|
|
///
|
|||
|
|
/// 当Service为bri_url时,返回的风险标签有:
|
|||
|
|
/// 1) 社工欺诈 说明: URL为社工欺诈
|
|||
|
|
/// 2) 信息诈骗 说明: URL为信息诈骗
|
|||
|
|
/// 3) 虚假销售 说明: URL为虚假销售
|
|||
|
|
/// 4) 恶意文件 说明: URL为恶意文件
|
|||
|
|
/// 5) 博彩网站 说明: URL为博彩网站
|
|||
|
|
/// 6) 色情网站 说明: URL为色情网站
|
|||
|
|
///
|
|||
|
|
/// 当Service为bri_apk时,返回的风险标签有:
|
|||
|
|
/// 1) 安全 说明: APK为正规应用
|
|||
|
|
/// 2) 一般 说明: APK为未发现问题的正常应用
|
|||
|
|
/// 3) 风险 说明: APK为外挂或色情等风险应用
|
|||
|
|
/// 4) 病毒 说明: APK为包含恶意代码的恶意软件吗,可能破坏系统或者其他app正常使用
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("Tags")]
|
|||
|
|
public string[] Tags{ get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// For internal usage only. DO NOT USE IT.
|
|||
|
|
/// </summary>
|
|||
|
|
internal override void ToMap(Dictionary<string, string> map, string prefix)
|
|||
|
|
{
|
|||
|
|
this.SetParamSimple(map, prefix + "Score", this.Score);
|
|||
|
|
this.SetParamArraySimple(map, prefix + "Tags.", this.Tags);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|