com.tencentcloudapi.dbbrain.v20210527.models.ScoreDetail Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Tencent Cloud API SDK for Java
/*
* Copyright (c) 2017-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.
*/
package com.tencentcloudapi.dbbrain.v20210527.models;
import com.tencentcloudapi.common.AbstractModel;
import com.tencentcloudapi.common.SSEResponseModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class ScoreDetail extends AbstractModel {
/**
* Deduction item type. Valid values: `Availability`, `Maintainability`, `Performance`, `Reliability`.
*/
@SerializedName("IssueType")
@Expose
private String IssueType;
/**
* Total deducted scores.
*/
@SerializedName("ScoreLost")
@Expose
private Long ScoreLost;
/**
* Upper limit of the deducted scores.
*/
@SerializedName("ScoreLostMax")
@Expose
private Long ScoreLostMax;
/**
* List of deduction items.
Note: This field may return null, indicating that no valid values can be obtained.
*/
@SerializedName("Items")
@Expose
private ScoreItem [] Items;
/**
* Get Deduction item type. Valid values: `Availability`, `Maintainability`, `Performance`, `Reliability`.
* @return IssueType Deduction item type. Valid values: `Availability`, `Maintainability`, `Performance`, `Reliability`.
*/
public String getIssueType() {
return this.IssueType;
}
/**
* Set Deduction item type. Valid values: `Availability`, `Maintainability`, `Performance`, `Reliability`.
* @param IssueType Deduction item type. Valid values: `Availability`, `Maintainability`, `Performance`, `Reliability`.
*/
public void setIssueType(String IssueType) {
this.IssueType = IssueType;
}
/**
* Get Total deducted scores.
* @return ScoreLost Total deducted scores.
*/
public Long getScoreLost() {
return this.ScoreLost;
}
/**
* Set Total deducted scores.
* @param ScoreLost Total deducted scores.
*/
public void setScoreLost(Long ScoreLost) {
this.ScoreLost = ScoreLost;
}
/**
* Get Upper limit of the deducted scores.
* @return ScoreLostMax Upper limit of the deducted scores.
*/
public Long getScoreLostMax() {
return this.ScoreLostMax;
}
/**
* Set Upper limit of the deducted scores.
* @param ScoreLostMax Upper limit of the deducted scores.
*/
public void setScoreLostMax(Long ScoreLostMax) {
this.ScoreLostMax = ScoreLostMax;
}
/**
* Get List of deduction items.
Note: This field may return null, indicating that no valid values can be obtained.
* @return Items List of deduction items.
Note: This field may return null, indicating that no valid values can be obtained.
*/
public ScoreItem [] getItems() {
return this.Items;
}
/**
* Set List of deduction items.
Note: This field may return null, indicating that no valid values can be obtained.
* @param Items List of deduction items.
Note: This field may return null, indicating that no valid values can be obtained.
*/
public void setItems(ScoreItem [] Items) {
this.Items = Items;
}
public ScoreDetail() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public ScoreDetail(ScoreDetail source) {
if (source.IssueType != null) {
this.IssueType = new String(source.IssueType);
}
if (source.ScoreLost != null) {
this.ScoreLost = new Long(source.ScoreLost);
}
if (source.ScoreLostMax != null) {
this.ScoreLostMax = new Long(source.ScoreLostMax);
}
if (source.Items != null) {
this.Items = new ScoreItem[source.Items.length];
for (int i = 0; i < source.Items.length; i++) {
this.Items[i] = new ScoreItem(source.Items[i]);
}
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "IssueType", this.IssueType);
this.setParamSimple(map, prefix + "ScoreLost", this.ScoreLost);
this.setParamSimple(map, prefix + "ScoreLostMax", this.ScoreLostMax);
this.setParamArrayObj(map, prefix + "Items.", this.Items);
}
}