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

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

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

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

import java.util.List;

/**
 * 企业发表内容到客户的朋友圈 获取客户朋友圈企业发表的列表
 *
 * @author leiin  created on  2021-10-29
 */
@Data
@EqualsAndHashCode(callSuper = true)
public class WxCpGetMomentTask extends WxCpBaseResp {
  private static final long serialVersionUID = 5621905029624794129L;

  @SerializedName("next_cursor")
  private String nextCursor;

  @SerializedName("task_list")
  private List taskList;

  /**
   * The type Moment task item.
   */
  @Getter
  @Setter
  public static class MomentTaskItem {
    @SerializedName("userid")
    private String userId;
    @SerializedName("publish_status")
    private String publishStatus;
  }

  /**
   * From json wx cp get moment task.
   *
   * @param json the json
   * @return the wx cp get moment task
   */
  public static WxCpGetMomentTask fromJson(String json) {
    return WxCpGsonBuilder.create().fromJson(json, WxCpGetMomentTask.class);
  }

  public String toJson() {
    return WxCpGsonBuilder.create().toJson(this);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy