cn.com.antcloud.api.riskplus.v1_0.model.RiskInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of antcloud-api-riskplus Show documentation
Show all versions of antcloud-api-riskplus Show documentation
Ant Chain API SDK For Java
Copyright (c) 2020-present antgroup.com, https://www.antgroup.com
//
// Copyright (c) 2020-present antgroup.com, https://www.antgroup.com
//
// 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 cn.com.antcloud.api.riskplus.v1_0.model;
import java.lang.String;
import java.util.List;
import javax.validation.constraints.NotNull;
/**
* 反欺诈风险数据服务风险信息 */
public class RiskInfo {
@NotNull
private String riskGroupDesc;
@NotNull
private String riskGroup;
@NotNull
private String riskGroupCategory;
@NotNull
private List riskDetails;
/**
* 反欺诈风险数据服务风险组描述 */
public String getRiskGroupDesc() {
return this.riskGroupDesc;
}
/**
* 反欺诈风险数据服务风险组描述 */
public void setRiskGroupDesc(String riskGroupDesc) {
this.riskGroupDesc = riskGroupDesc;
}
/**
* 反欺诈风险数据服务风险组名 */
public String getRiskGroup() {
return this.riskGroup;
}
/**
* 反欺诈风险数据服务风险组名 */
public void setRiskGroup(String riskGroup) {
this.riskGroup = riskGroup;
}
/**
* 反欺诈风险数据服务风险组类别 */
public String getRiskGroupCategory() {
return this.riskGroupCategory;
}
/**
* 反欺诈风险数据服务风险组类别 */
public void setRiskGroupCategory(String riskGroupCategory) {
this.riskGroupCategory = riskGroupCategory;
}
/**
* 反欺诈风险数据服务风险组信息 */
public List getRiskDetails() {
return this.riskDetails;
}
/**
* 反欺诈风险数据服务风险组信息 */
public void setRiskDetails(List riskDetails) {
this.riskDetails = riskDetails;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy