com.alipay.api.response.AlipaySecurityRiskContentResultGetResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.response;
import java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.InfoSecHitDetectItem;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.security.risk.content.result.get response.
*
* @author auto create
* @since 1.0, 2024-07-04 15:51:33
*/
public class AlipaySecurityRiskContentResultGetResponse extends AlipayResponse {
private static final long serialVersionUID = 7261235652982524471L;
/**
* 命中结果详情
*/
@ApiListField("hit_detect_items")
@ApiField("info_sec_hit_detect_item")
private List hitDetectItems;
/**
* PASSED("数据识别通过,可以在网站上正常显示")
REJECTED("被拒绝的数据,比如内容出现违禁词;不能出现在我们网站上")
*/
@ApiField("result_action")
private String resultAction;
/**
* 输出命中的标签,用逗号分割
*/
@ApiField("risk_labels")
private String riskLabels;
public void setHitDetectItems(List hitDetectItems) {
this.hitDetectItems = hitDetectItems;
}
public List getHitDetectItems( ) {
return this.hitDetectItems;
}
public void setResultAction(String resultAction) {
this.resultAction = resultAction;
}
public String getResultAction( ) {
return this.resultAction;
}
public void setRiskLabels(String riskLabels) {
this.riskLabels = riskLabels;
}
public String getRiskLabels( ) {
return this.riskLabels;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy