Skip to content

Commit

Permalink
🎨 #2411【微信公众号】获取草稿列表接口新增两个字段
Browse files Browse the repository at this point in the history
  • Loading branch information
wangqinggo authored Nov 29, 2021
1 parent cc6bc22 commit 20011f8
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,16 @@ public class WxMpDraftArticles implements ToJson, Serializable {
*/
@SerializedName("only_fans_can_comment")
private Integer onlyFansCanComment;
/**
* 草稿的临时链接,点击图文消息跳转链接
*/
@SerializedName("url")
private String url;
/**
* 图文消息的封面url
*/
@SerializedName("thumb_url")
private String thumbUrl;

public static WxMpDraftArticles fromJson(String json) {
return WxGsonBuilder.create().fromJson(json, WxMpDraftArticles.class);
Expand Down

0 comments on commit 20011f8

Please sign in to comment.