/* * 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.Cws.V20180312.Models { using Newtonsoft.Json; using System.Collections.Generic; using TencentCloud.Common; public class Vul : AbstractModel { /// /// 漏洞ID。 /// [JsonProperty("Id")] public ulong? Id{ get; set; } /// /// 站点ID。 /// [JsonProperty("SiteId")] public ulong? SiteId{ get; set; } /// /// 扫描引擎的扫描任务ID。 /// [JsonProperty("TaskId")] public ulong? TaskId{ get; set; } /// /// 漏洞级别:high、middle、low、notice。 /// [JsonProperty("Level")] public string Level{ get; set; } /// /// 漏洞名称。 /// [JsonProperty("Name")] public string Name{ get; set; } /// /// 出现漏洞的url。 /// [JsonProperty("Url")] public string Url{ get; set; } /// /// 网址/细节。 /// [JsonProperty("Html")] public string Html{ get; set; } /// /// 漏洞类型。 /// [JsonProperty("Nickname")] public string Nickname{ get; set; } /// /// 危害说明。 /// [JsonProperty("Harm")] public string Harm{ get; set; } /// /// 漏洞描述。 /// [JsonProperty("Describe")] public string Describe{ get; set; } /// /// 解决方案。 /// [JsonProperty("Solution")] public string Solution{ get; set; } /// /// 漏洞参考。 /// [JsonProperty("From")] public string From{ get; set; } /// /// 漏洞通过该参数攻击。 /// [JsonProperty("Parameter")] public string Parameter{ get; set; } /// /// CreatedAt。 /// [JsonProperty("CreatedAt")] public string CreatedAt{ get; set; } /// /// UpdatedAt。 /// [JsonProperty("UpdatedAt")] public string UpdatedAt{ get; set; } /// /// 是否已经添加误报,0-否,1-是。 /// [JsonProperty("IsReported")] public ulong? IsReported{ get; set; } /// /// 云用户appid。 /// [JsonProperty("Appid")] public ulong? Appid{ get; set; } /// /// 云用户标识。 /// [JsonProperty("Uin")] public string Uin{ get; set; } /// /// For internal usage only. DO NOT USE IT. /// internal override void ToMap(Dictionary map, string prefix) { this.SetParamSimple(map, prefix + "Id", this.Id); this.SetParamSimple(map, prefix + "SiteId", this.SiteId); this.SetParamSimple(map, prefix + "TaskId", this.TaskId); this.SetParamSimple(map, prefix + "Level", this.Level); this.SetParamSimple(map, prefix + "Name", this.Name); this.SetParamSimple(map, prefix + "Url", this.Url); this.SetParamSimple(map, prefix + "Html", this.Html); this.SetParamSimple(map, prefix + "Nickname", this.Nickname); this.SetParamSimple(map, prefix + "Harm", this.Harm); this.SetParamSimple(map, prefix + "Describe", this.Describe); this.SetParamSimple(map, prefix + "Solution", this.Solution); this.SetParamSimple(map, prefix + "From", this.From); this.SetParamSimple(map, prefix + "Parameter", this.Parameter); this.SetParamSimple(map, prefix + "CreatedAt", this.CreatedAt); this.SetParamSimple(map, prefix + "UpdatedAt", this.UpdatedAt); this.SetParamSimple(map, prefix + "IsReported", this.IsReported); this.SetParamSimple(map, prefix + "Appid", this.Appid); this.SetParamSimple(map, prefix + "Uin", this.Uin); } } }