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

me.chanjar.weixin.cp.bean.living.WxCpWatchStat Maven / Gradle / Ivy

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

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

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

/**
 * 直播观看明细.
 *
 * @author Wang_Wong
 */
@Data
public class WxCpWatchStat implements Serializable {
  private static final long serialVersionUID = -5028321625140879571L;

  private Integer ending;

  @SerializedName("next_key")
  private String nextKey;

  @SerializedName("stat_info")
  private StatInfo statInfo;

  /**
   * The type Stat info.
   */
  @Getter
  @Setter
  public static class StatInfo implements Serializable {
    private static final long serialVersionUID = -5696099236344075582L;

    @SerializedName("users")
    private List users;

    @SerializedName("external_users")
    private List externalUsers;

  }

  /**
   * The type User.
   */
  @Getter
  @Setter
  public static class User implements Serializable {
    private static final long serialVersionUID = -5696099236344075582L;

    private String userid;

    @SerializedName("watch_time")
    private Long watchTime;

    @SerializedName("is_comment")
    private Integer isComment;

    @SerializedName("is_mic")
    private Integer isMic;

  }

  /**
   * The type External user.
   */
  @Getter
  @Setter
  public static class ExternalUser implements Serializable {
    private static final long serialVersionUID = -5696099236344075582L;

    private String name;
    private Integer type;

    @SerializedName("external_userid")
    private String externalUserid;

    @SerializedName("watch_time")
    private Long watchTime;

    @SerializedName("is_comment")
    private Integer isComment;

    @SerializedName("is_mic")
    private Integer isMic;

  }

  /**
   * From json wx cp watch stat.
   *
   * @param json the json
   * @return the wx cp watch stat
   */
  public static WxCpWatchStat fromJson(String json) {
    return WxCpGsonBuilder.create().fromJson(json, WxCpWatchStat.class);
  }

  /**
   * To json string.
   *
   * @return the string
   */
  public String toJson() {
    return WxCpGsonBuilder.create().toJson(this);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy