com.alipay.api.response.AlipaySecurityRiskContentDetectResponse 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.AlipayResponse;
/**
* ALIPAY API: alipay.security.risk.content.detect response.
*
* @author auto create
* @since 1.0, 2024-07-04 15:51:35
*/
public class AlipaySecurityRiskContentDetectResponse extends AlipayResponse {
private static final long serialVersionUID = 8513282494652829396L;
/**
* 表示处理结果,REJECTED表示拦截,PASSED表示放过。
*/
@ApiField("action")
private String action;
/**
* 命中的关键词列表
*/
@ApiListField("keywords")
@ApiField("string")
private List keywords;
/**
* 业务唯一识别码,可用来对应异步识别结果
*/
@ApiField("unique_id")
private String uniqueId;
public void setAction(String action) {
this.action = action;
}
public String getAction( ) {
return this.action;
}
public void setKeywords(List keywords) {
this.keywords = keywords;
}
public List getKeywords( ) {
return this.keywords;
}
public void setUniqueId(String uniqueId) {
this.uniqueId = uniqueId;
}
public String getUniqueId( ) {
return this.uniqueId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy