weixin.popular.bean.customservice.KFSession Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weixin-popular Show documentation
Show all versions of weixin-popular Show documentation
The weixin-popular is a JAVA SDK for weixin. Weixin web url is https://mp.weixin.qq.com.
package weixin.popular.bean.customservice;
import java.util.List;
import weixin.popular.bean.BaseResult;
/**
* 客服会话
* @author Menng
*/
public class KFSession extends BaseResult {
private List sessionlist; // 会话列表
public List getSessionlist() {
return sessionlist;
}
public void setSessionlist(List sessionlist) {
this.sessionlist = sessionlist;
}
public static class SessionList {
private Integer createtime; // 会话创建时间,UNIX时间戳
private String openid; // 客户openid
public Integer getCreatetime() {
return createtime;
}
public void setCreatetime(Integer createtime) {
this.createtime = createtime;
}
public String getOpenid() {
return openid;
}
public void setOpenid(String openid) {
this.openid = openid;
}
}
}