
com.tencentcloudapi.dsgc.v20190723.models.ItemLevel Maven / Gradle / Ivy
/*
* 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.dsgc.v20190723.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 ItemLevel extends AbstractModel {
/**
* 分级标识名称,1-60个字符,仅允许输入中文、英文字母、数字、'_'、'-',并且开头和结尾需为中文、英文字母或者数字,Name不可重复
*/
@SerializedName("LevelRiskName")
@Expose
private String LevelRiskName;
/**
* 分级标识对应的风险分数值,1-10,最小为1,最大为10
*/
@SerializedName("LevelRiskScore")
@Expose
private Long LevelRiskScore;
/**
* Get 分级标识名称,1-60个字符,仅允许输入中文、英文字母、数字、'_'、'-',并且开头和结尾需为中文、英文字母或者数字,Name不可重复
* @return LevelRiskName 分级标识名称,1-60个字符,仅允许输入中文、英文字母、数字、'_'、'-',并且开头和结尾需为中文、英文字母或者数字,Name不可重复
*/
public String getLevelRiskName() {
return this.LevelRiskName;
}
/**
* Set 分级标识名称,1-60个字符,仅允许输入中文、英文字母、数字、'_'、'-',并且开头和结尾需为中文、英文字母或者数字,Name不可重复
* @param LevelRiskName 分级标识名称,1-60个字符,仅允许输入中文、英文字母、数字、'_'、'-',并且开头和结尾需为中文、英文字母或者数字,Name不可重复
*/
public void setLevelRiskName(String LevelRiskName) {
this.LevelRiskName = LevelRiskName;
}
/**
* Get 分级标识对应的风险分数值,1-10,最小为1,最大为10
* @return LevelRiskScore 分级标识对应的风险分数值,1-10,最小为1,最大为10
*/
public Long getLevelRiskScore() {
return this.LevelRiskScore;
}
/**
* Set 分级标识对应的风险分数值,1-10,最小为1,最大为10
* @param LevelRiskScore 分级标识对应的风险分数值,1-10,最小为1,最大为10
*/
public void setLevelRiskScore(Long LevelRiskScore) {
this.LevelRiskScore = LevelRiskScore;
}
public ItemLevel() {
}
/**
* 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 ItemLevel(ItemLevel source) {
if (source.LevelRiskName != null) {
this.LevelRiskName = new String(source.LevelRiskName);
}
if (source.LevelRiskScore != null) {
this.LevelRiskScore = new Long(source.LevelRiskScore);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "LevelRiskName", this.LevelRiskName);
this.setParamSimple(map, prefix + "LevelRiskScore", this.LevelRiskScore);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy