com.aliyun.dingtalkexclusive_1_0.models.PreventCheatingCheckRiskResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkexclusive_1_0.models;
import com.aliyun.tea.*;
public class PreventCheatingCheckRiskResponseBody extends TeaModel {
@NameInMap("result")
public PreventCheatingCheckRiskResponseBodyResult result;
public static PreventCheatingCheckRiskResponseBody build(java.util.Map map) throws Exception {
PreventCheatingCheckRiskResponseBody self = new PreventCheatingCheckRiskResponseBody();
return TeaModel.build(map, self);
}
public PreventCheatingCheckRiskResponseBody setResult(PreventCheatingCheckRiskResponseBodyResult result) {
this.result = result;
return this;
}
public PreventCheatingCheckRiskResponseBodyResult getResult() {
return this.result;
}
public static class PreventCheatingCheckRiskResponseBodyResult extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("hasRisk")
public Boolean hasRisk;
@NameInMap("riskInfo")
public java.util.Map riskInfo;
public static PreventCheatingCheckRiskResponseBodyResult build(java.util.Map map) throws Exception {
PreventCheatingCheckRiskResponseBodyResult self = new PreventCheatingCheckRiskResponseBodyResult();
return TeaModel.build(map, self);
}
public PreventCheatingCheckRiskResponseBodyResult setHasRisk(Boolean hasRisk) {
this.hasRisk = hasRisk;
return this;
}
public Boolean getHasRisk() {
return this.hasRisk;
}
public PreventCheatingCheckRiskResponseBodyResult setRiskInfo(java.util.Map riskInfo) {
this.riskInfo = riskInfo;
return this;
}
public java.util.Map getRiskInfo() {
return this.riskInfo;
}
}
}