me.chanjar.weixin.cp.bean.external.interceptrule.WxCpInterceptRule Maven / Gradle / Ivy
package me.chanjar.weixin.cp.bean.external.interceptrule;
import com.google.gson.annotations.SerializedName;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.common.bean.ToJson;
import me.chanjar.weixin.cp.util.json.WxCpGsonBuilder;
import java.io.Serializable;
import java.util.List;
/**
* 敏感词规则修改接口请求和详情接口响应共用的实体类
*
* @author didi
*/
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class WxCpInterceptRule implements Serializable, ToJson {
private static final long serialVersionUID = 7161086545769110431L;
@SerializedName("rule_name")
private String ruleName;
@SerializedName("rule_id")
private String ruleId;
@SerializedName("word_list")
private List wordList;
@SerializedName("extra_rule")
private ExtraRule extraRule;
@SerializedName("intercept_type")
private int interceptType;
@SerializedName("add_applicable_range")
private ApplicableRange addApplicableRange;
@SerializedName("remove_applicable_range")
private ApplicableRange removeApplicableRange;
@Data
public static class ExtraRule implements Serializable {
private static final long serialVersionUID = -6377386837586111671L;
@SerializedName("semantics_list")
private List semanticsList;
}
/**
* From json wx cp intercept rule resp.
*
* @param json the json
* @return the wx cp intercept rule resp
*/
public static WxCpInterceptRule fromJson(String json) {
return WxCpGsonBuilder.create().fromJson(json, WxCpInterceptRule.class);
}
/**
* To json string.
*
* @return the string
*/
public String toJson() {
return WxCpGsonBuilder.create().toJson(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy