All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.chanjar.weixin.cp.bean.external.WxCpUserExternalGroupChatList Maven / Gradle / Ivy

There is a newer version: 4.6.7.B
Show newest version
package me.chanjar.weixin.cp.bean.external;

import com.google.gson.annotations.SerializedName;
import lombok.Getter;
import lombok.Setter;
import me.chanjar.weixin.cp.bean.WxCpBaseResp;
import me.chanjar.weixin.cp.util.json.WxCpGsonBuilder;

import java.io.Serializable;
import java.util.List;

/**
 * The type Wx cp user external group chat list.
 *
 * @author yqx  created on  2020/3/116
 */
@Getter
@Setter
public class WxCpUserExternalGroupChatList extends WxCpBaseResp {
  private static final long serialVersionUID = 1907272035492110236L;

  @SerializedName("group_chat_list")
  private List groupChatList;

  @SerializedName("next_cursor")
  private String nextCursor;

  /**
   * The type Chat status.
   */
  @Getter
  @Setter
  public static class ChatStatus implements Serializable {

    /**
     * 客户群ID
     */
    @SerializedName("chat_id")
    private String chatId;

    /**
     * 客户群状态
     * 0 - 正常
     * 1 - 跟进人离职
     * 2 - 离职继承中
     * 3 - 离职继承完成
     */
    @SerializedName("status")
    private int status;

  }

  /**
   * From json wx cp user external group chat list.
   *
   * @param json the json
   * @return the wx cp user external group chat list
   */
  public static WxCpUserExternalGroupChatList fromJson(String json) {
    return WxCpGsonBuilder.create().fromJson(json, WxCpUserExternalGroupChatList.class);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy