All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.sas20181203.models.GetSuspiciousStatisticsResponseBody Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sas20181203.models;

import com.aliyun.tea.*;

public class GetSuspiciousStatisticsResponseBody extends TeaModel {
    /**
     * 

The number of alerts whose Emergency level is Reminder.

*/ @NameInMap("RemindCount") public Integer remindCount; /** *

The ID of the request, which is used to locate and troubleshoot issues.

*/ @NameInMap("RequestId") public String requestId; /** *

The number of alerts whose Emergency level is Urgent.

*/ @NameInMap("SeriousCount") public Integer seriousCount; /** *

The number of alerts whose Emergency level is Suspicious.

*/ @NameInMap("SuspiciousCount") public Integer suspiciousCount; /** *

The total number of alerts.

*/ @NameInMap("TotalCount") public Integer totalCount; public static GetSuspiciousStatisticsResponseBody build(java.util.Map map) throws Exception { GetSuspiciousStatisticsResponseBody self = new GetSuspiciousStatisticsResponseBody(); return TeaModel.build(map, self); } public GetSuspiciousStatisticsResponseBody setRemindCount(Integer remindCount) { this.remindCount = remindCount; return this; } public Integer getRemindCount() { return this.remindCount; } public GetSuspiciousStatisticsResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public GetSuspiciousStatisticsResponseBody setSeriousCount(Integer seriousCount) { this.seriousCount = seriousCount; return this; } public Integer getSeriousCount() { return this.seriousCount; } public GetSuspiciousStatisticsResponseBody setSuspiciousCount(Integer suspiciousCount) { this.suspiciousCount = suspiciousCount; return this; } public Integer getSuspiciousCount() { return this.suspiciousCount; } public GetSuspiciousStatisticsResponseBody setTotalCount(Integer totalCount) { this.totalCount = totalCount; return this; } public Integer getTotalCount() { return this.totalCount; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy