me.chanjar.weixin.mp.bean.result.WxMpUserBlacklistGetResult Maven / Gradle / Ivy
package me.chanjar.weixin.mp.bean.result;
import me.chanjar.weixin.mp.util.json.WxMpGsonBuilder;
import java.util.ArrayList;
import java.util.List;
/**
* @author miller
*/
public class WxMpUserBlacklistGetResult {
protected int total = -1;
protected int count = -1;
protected List openidList = new ArrayList<>();
protected String nextOpenid;
public static WxMpUserBlacklistGetResult fromJson(String json) {
return WxMpGsonBuilder.INSTANCE.create().fromJson(json, WxMpUserBlacklistGetResult.class);
}
public int getTotal() {
return this.total;
}
public void setTotal(int total) {
this.total = total;
}
public int getCount() {
return this.count;
}
public void setCount(int count) {
this.count = count;
}
public List getOpenidList() {
return this.openidList;
}
public void setOpenidList(List openidList) {
this.openidList = openidList;
}
public String getNextOpenid() {
return this.nextOpenid;
}
public void setNextOpenid(String nextOpenid) {
this.nextOpenid = nextOpenid;
}
@Override
public String toString() {
return WxMpGsonBuilder.INSTANCE.create().toJson(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy